Files
nixos-macmini/modules/system/nix.nix
2026-01-27 14:52:50 +00:00

13 lines
207 B
Nix

{ ... }:
{
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
programs.nh = {
enable = true;
clean.enable = true;
clean.extraArgs = "--keep-since 4d --keep 3";
};
}