autoupdate flake
This commit is contained in:
parent
fe9bb51293
commit
feaf4cd91e
33
modules/nixos/system/autoUpgrade/default.nix
Normal file
33
modules/nixos/system/autoUpgrade/default.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -24,11 +24,17 @@ with lib.wyrdgard;
|
|||
_1password = enabled;
|
||||
};
|
||||
|
||||
system.hardware = {
|
||||
system = {
|
||||
autoUpgrade = {
|
||||
enable = true;
|
||||
time = "10:00";
|
||||
};
|
||||
hardware = {
|
||||
bluetooth = enabled;
|
||||
gpu.nvidia = enabled;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
system.stateVersion = "23.11";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue