diff options
author | Soispha <soispha@vhack.eu> | 2023-07-03 21:32:13 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-07-04 08:10:26 +0200 |
commit | 844ff5588ceed2593558a57cb9beabb7859ea2c1 (patch) | |
tree | 827b25c5a1c6c003e1e1bfb7774a5efff5c2aac8 /system/services | |
parent | Fix(system/services/nix-sync): Use correct shell escape for paths (diff) | |
download | nixos-server-844ff5588ceed2593558a57cb9beabb7859ea2c1.tar.gz nixos-server-844ff5588ceed2593558a57cb9beabb7859ea2c1.zip |
Fix(system/services/nix-sync): Rename units to nix-sync-<domain>
Diffstat (limited to 'system/services')
-rw-r--r-- | system/services/nix-sync/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/services/nix-sync/default.nix b/system/services/nix-sync/default.nix index fbc245b..b4859a1 100644 --- a/system/services/nix-sync/default.nix +++ b/system/services/nix-sync/default.nix @@ -103,7 +103,7 @@ services = lib.mapAttrs' (name: repo: { - name = "git-sync-${name}"; + name = "nix-sync-${name}"; value = mkUnit name repo; }) cfg.repositories; |