22 lines
482 B
Nix
22 lines
482 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 30d";
|
|
};
|
|
};
|
|
|
|
# Make sure the system is at least semi up to date
|
|
system.autoUpgrade = {
|
|
enable = true;
|
|
dates = "weekly";
|
|
};
|
|
}
|