mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-24 23:59:07 +02:00
17 lines
377 B
Nix
17 lines
377 B
Nix
{ ... }: {
|
|
flake.nixosModules.platform-sys-upgrades = { host, ... }: {
|
|
system.autoUpgrade = {
|
|
enable = true;
|
|
flake = "github:Moe1369/nix-fleet#${host}";
|
|
dates = "Sun 04:00";
|
|
persistent = true;
|
|
};
|
|
nix.gc = {
|
|
automatic = true;
|
|
dates = "Sun 04:30";
|
|
options = "--delete-older-than 7d";
|
|
persistent = true;
|
|
};
|
|
};
|
|
}
|