serverle: fmt & cleanup

This commit is contained in:
Felix Buehler 2021-11-30 23:16:20 +01:00
parent 6936c08ffb
commit ef3c9d0340

View file

@ -24,10 +24,16 @@
]; ];
# Nix # Nix
nix.gc.automatic = true; nix.gc = {
nix.gc.options = "--delete-older-than 30d"; automatic = true;
options = "--delete-older-than 30d";
};
system.stateVersion = "21.05"; system = {
system.autoUpgrade.enable = true; stateVersion = "21.05";
system.autoUpgrade.channel = https://nixos.org/channels/nixos-21.05; autoUpgrade = {
enable = true;
channel = https://nixos.org/channels/nixos-21.05;
};
};
} }