1
0

pkgs/nixfiles: rename nixfiles-system-sync-to-hydra to nixfiles-system-upgrade

This commit is contained in:
2023-12-01 18:02:44 +01:00
parent cff95863fd
commit 01b1ce3caa
10 changed files with 13 additions and 13 deletions

@@ -13,7 +13,7 @@
./monitoring
./nginx-port-forward
./nixfiles
./nixfiles/system-auto-sync-to-hydra.nix
./nixfiles/nixfiles-system-upgrade.nix
./update-from-hydra
./wg-clerie
./wireguard-initrd

@@ -3,12 +3,12 @@
with lib;
let
cfg = config.clerie.nixfiles.system-auto-sync-to-hydra;
cfg = config.clerie.nixfiles.system-auto-upgrade;
in
{
options = {
clerie.nixfiles.system-auto-sync-to-hydra = {
clerie.nixfiles.system-auto-upgrade = {
enable = mkEnableOption "clerie nixfiles tools";
allowReboot = mkOption {
type = types.bool;
@@ -18,10 +18,10 @@ in
};
};
config = mkIf cfg.enable {
systemd.services.nixfiles-system-auto-sync-to-hydra = {
systemd.services.nixfiles-system-auto-upgrade = {
serviceConfig = {
Type = "oneshot";
ExecStart = pkgs.nixfiles-system-sync-to-hydra + "/bin/nixfiles-system-sync-to-hydra${optionalString cfg.allowReboot " --allow-reboot"}";
ExecStart = pkgs.nixfiles-system-upgrade + "/bin/nixfiles-system-upgrade${optionalString cfg.allowReboot " --allow-reboot"}";
};
startAt = "*-*-* 06:47:00";
};