nixos-config/config/server.nix

13 lines
270 B
Nix

# Configuration unique to servers
{ ... }: {
system.autoUpgrade = {
enable = true;
flake = "github:DarkKirb/nixos-config";
flags = [
"--recreate-lock-file"
"--no-write-lock-file"
"-L" # print build logs
];
dates = "daily";
};
}