fruitbasket/modules/autoupdate.nix
2021-11-17 14:29:20 +01:00

11 lines
187 B
Nix

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