summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-07-03 21:32:13 +0200
committerSoispha <soispha@vhack.eu>2023-07-04 08:10:26 +0200
commit844ff5588ceed2593558a57cb9beabb7859ea2c1 (patch)
tree827b25c5a1c6c003e1e1bfb7774a5efff5c2aac8
parentFix(system/services/nix-sync): Use correct shell escape for paths (diff)
downloadnixos-server-844ff5588ceed2593558a57cb9beabb7859ea2c1.tar.gz
nixos-server-844ff5588ceed2593558a57cb9beabb7859ea2c1.zip
Fix(system/services/nix-sync): Rename units to nix-sync-<domain>
Diffstat (limited to '')
-rw-r--r--system/services/nix-sync/default.nix2
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;