nixfleet/modules/auto-upgrade/default.nix
Andrea Ciceri a394b9cefd
All checks were successful
/ test (push) Successful in 32s
Reformat everything
2024-09-20 11:37:17 +02:00

16 lines
327 B
Nix

{
config,
...
}:
{
system.autoUpgrade = {
enable = false;
flake = "github:aciceri/nixfleet#${config.networking.hostName}";
# flags =
# lib.lists.optional
# (builtins.hasAttr "ccrEmacs" options)
# ["--update-input" "ccrEmacs" "ccrEmacs"];
dates = "daily";
allowReboot = false;
};
}