flake-config/modules/os.nix
Squibid e20755851c
Forgot to use branches, remember kids: use protection
I'd like less generations please side note:
it's a bit weird that you can't specify how many generations you'd like
to keep, like what if I want 3 generations to stay available?
2026-01-24 22:23:54 -05:00

22 lines
481 B
Nix

{
# configure nix stuff
nix = {
settings = {
experimental-features = [ "nix-command" "flakes" "pipe-operators" ];
auto-optimise-store = true;
trusted-users = [ "@wheel" ];
};
gc = {
dates = "weekly";
automatic = true;
randomizedDelaySec = "45min";
options = "--delete-older-than 7d";
};
};
# Make sure the system is at least semi up to date
system.autoUpgrade = {
enable = true;
dates = "weekly";
};
}