dots/hosts/luna/modules/system.nix

18 lines
244 B
Nix
Raw Normal View History

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