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.gc.automatic = true;
nix.gc.options = "--delete-older-than 30d";
nix.gc = {
automatic = true;
options = "--delete-older-than 30d";
};
system.stateVersion = "21.05";
system.autoUpgrade.enable = true;
system.autoUpgrade.channel = https://nixos.org/channels/nixos-21.05;
system = {
stateVersion = "21.05";
autoUpgrade = {
enable = true;
channel = https://nixos.org/channels/nixos-21.05;
};
};
}