NixOS/hosts/luna/modules/system.nix

14 lines
214 B
Nix

{ self, ... }:
{
system = {
autoUpgrade = {
enable = true;
dates = "05:00";
allowReboot = true;
flake = self.outPath;
flags = [ "--update-input" "nixpkgs" "-L" ];
};
};
}