nixfleet/modules/auto-upgrade/default.nix
Andrea Ciceri 2d3e4844b7
Start refactoring
- remove emacs
- remove inputs
- trying to speed up evaluation
- update inputs
2024-09-19 14:34:37 +02:00

17 lines
345 B
Nix

{
config,
options,
lib,
...
}: {
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;
};
}