autoupdate flake

This commit is contained in:
Christoph Hollizeck 2024-04-07 10:34:12 +02:00
parent fe9bb51293
commit feaf4cd91e
No known key found for this signature in database
GPG key ID: A8185688CDE3921F
2 changed files with 40 additions and 1 deletions

View file

@ -0,0 +1,33 @@
{
options,
config,
pkgs,
lib,
inputs,
...
}:
with lib;
with lib.wyrdgard;
let
cfg = config.wyrdgard.system.autoUpgrade;
in
{
options.wyrdgard.system.autoUpgrade = with types; {
enable = mkEnableOption "Enable auto-upgrade";
time = mkOpt str "02:00" "Time to run auto-upgrade";
};
config = mkIf cfg.enable {
system.autoUpgrade = {
enable = true;
flake = inputs.self.outPath;
flags = [
"--update-input"
"nixpkgs"
"--print-build-logs"
];
dates = cfg.time;
randomizedDelaySec = "45min";
};
};
}