16 lines
327 B
Nix
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;
|
|
};
|
|
}
|