about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2024-02-10 20:20:03 +0900
committersefidel <contact@sefidel.net>2024-02-10 20:23:45 +0900
commita3c1f5d64ce32f0561c84ba060afb65d85b87637 (patch)
tree908603c2ddbf137361e26f14086351733ba3ff56
parente71cc0715acc78c57cb2c1ab1f753b541e3b8eb6 (diff)
downloadnixrc-a3c1f5d64ce32f0561c84ba060afb65d85b87637.tar.gz
nixrc-a3c1f5d64ce32f0561c84ba060afb65d85b87637.zip
feat(modules/hydra): allow git+ uris
-rw-r--r--modules/services/hydra.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/services/hydra.nix b/modules/services/hydra.nix
index 65f602c..d0e5968 100644
--- a/modules/services/hydra.nix
+++ b/modules/services/hydra.nix
@@ -33,6 +33,6 @@ in
       "/var/lib/hydra"
     ];
 
-    nix.settings.allowed-uris = [ "github:" "https://" "http://" ];
+    nix.settings.allowed-uris = [ "github:" "https://" "http://" "git+http://" "git+https://" ];
   };
 }