14 lines
220 B
Nix
14 lines
220 B
Nix
_: {
|
|
# nh default flake
|
|
environment.variables.NH_FLAKE = "/etc/nixos";
|
|
|
|
programs.nh = {
|
|
enable = true;
|
|
# weekly cleanup
|
|
clean = {
|
|
enable = true;
|
|
extraArgs = "--keep-since 7d";
|
|
};
|
|
};
|
|
}
|