NixOS/hosts/luna/modules/system.nix

18 lines
244 B
Nix
Raw Normal View History

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