nixos-config/modules/system/upgrades/default.nix
Mohamed C. a96c880bb3
Some checks are pending
Flake.lock / build (push) Waiting to run
Update default.nix
2024-08-26 16:35:24 +02:00

13 lines
374 B
Nix

{ hostName, ... }:
{
system.autoUpgrade = {
enable = true;
dates = "04:00";
flake = "github:Moe1369/nixos-config#${hostName}";
flags = [
"--update-input" "nixpkgs" "--update-input" "home-manager" "--update-input" "jovian" "-L" "--update-input" "plasma-manager" "--update-input" "nix-flatpak" "--commit-lock-file"
];
allowReboot = true;
};
}