dots/hosts/luna/modules/nix.nix
Price Hiller ab536579dd
Some checks failed
Check Formatting of Files / Check-Formatting (push) Has been cancelled
refactor(nix/hosts/luna): set gc to remove generations older than a week
2024-05-24 14:03:52 -05:00

19 lines
309 B
Nix
Executable File

{ ... }:
{
nix = {
settings = {
experimental-features = [
"nix-command"
"flakes"
];
auto-optimise-store = true;
trusted-users = [ "@wheel" ];
};
gc = {
automatic = true;
options = "--delete-older-than 7d";
dates = "daily";
};
};
}