fruitbasket/modules/autoupdate.nix
2022-04-10 13:59:39 +02:00

11 lines
187 B
Nix
Executable file

{ pkgs, config, ... }:
{
system.autoUpgrade = {
enable = true;
dates = "12:00";
# might need to move this into the configuration of `birne`?
allowReboot = true;
};
}