nixos/hosts/Legion/configuration.nix

13 lines
266 B
Nix
Raw Normal View History

{config, ...}: {
users.mutableUsers = false;
system.autoUpgrade = {
flake = "git+${config.nix.registry.nixos.to.url}";
randomizedDelaySec = "15min";
allowReboot = true;
rebootWindow = {
lower = "02:00";
upper = "05:00";
};
};
2023-06-22 09:03:42 +01:00
}