Files
nix/hosts/common/scripts/cleanup/default.nix
2024-06-23 14:50:50 +03:00

17 lines
290 B
Nix

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