diff options
-rw-r--r-- | lass/2configs/repo-sync.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lass/2configs/repo-sync.nix b/lass/2configs/repo-sync.nix index 1d947f8ae..821e3bafd 100644 --- a/lass/2configs/repo-sync.nix +++ b/lass/2configs/repo-sync.nix @@ -48,7 +48,7 @@ let mirror.ref = "heads/newest"; }; }; - krebs.git = defineRepo name true; + krebs.git = defineRepo name (config.networking.hostName == "prism"); }; sync-remote = name: url: @@ -59,7 +59,7 @@ let mirror.url = "${mirror}${name}"; }; }; - krebs.git = defineRepo name true; + krebs.git = defineRepo name (config.networking.hostName == "prism"); }; sync-remote-silent = name: url: |