diff options
author | sefidel <contact@sefidel.net> | 2024-02-10 20:20:03 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2024-02-10 20:23:45 +0900 |
commit | a3c1f5d64ce32f0561c84ba060afb65d85b87637 (patch) | |
tree | 908603c2ddbf137361e26f14086351733ba3ff56 /modules/services/hydra.nix | |
parent | e71cc0715acc78c57cb2c1ab1f753b541e3b8eb6 (diff) | |
download | nixrc-a3c1f5d64ce32f0561c84ba060afb65d85b87637.tar.gz nixrc-a3c1f5d64ce32f0561c84ba060afb65d85b87637.zip |
feat(modules/hydra): allow git+ uris
Diffstat (limited to 'modules/services/hydra.nix')
-rw-r--r-- | modules/services/hydra.nix | 2 |
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://" ]; }; } |