Files
nix/hosts/common/system/scripts/cleanup/default.nix
2024-07-08 20:01:55 +03:00

17 lines
302 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = [
(pkgs.writeShellApplication {
name = "nix-cleanup";
runtimeInputs = with pkgs; [
coreutils
util-linux
findutils
btrfs-progs
nix
];
text = builtins.readFile ./cleanup.sh;
})
];
}