14 lines
223 B
Nix
14 lines
223 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
programs.nh = {
|
|
enable = true;
|
|
clean.enable = true;
|
|
clean.extraArgs = "--keep-since 4d --keep 3";
|
|
flake = "/home/alex/src/nixos-config";
|
|
};
|
|
|
|
nix.gc.automatic = lib.mkForce false;
|
|
}
|