diff options
author | Emile <git@emile.space> | 2024-03-10 15:04:21 +0100 |
---|---|---|
committer | Emile <git@emile.space> | 2024-03-10 15:04:21 +0100 |
commit | 43afedad201327a280ab1222a1054e6d808182f8 (patch) | |
tree | 2390753e232ceb108d374fcb76459f69fdc6ba00 /nix | |
parent | 1195ba257c9ff085844bd2fb5199aaf1c431f5f1 (diff) |
trying out yet another allowed-uris configuration
Diffstat (limited to 'nix')
-rw-r--r-- | nix/hosts/corrino/configuration.nix | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/nix/hosts/corrino/configuration.nix b/nix/hosts/corrino/configuration.nix index cd293ba..ad541b6 100644 --- a/nix/hosts/corrino/configuration.nix +++ b/nix/hosts/corrino/configuration.nix @@ -333,11 +333,18 @@ }; # we need the below in order for hydra to be allowed to access the pages + # ssh://gitea@git.emile.space/ + # allowed-uris = https://git.emile.space/ https://git.emile.space/ https://portswigger-cdn.net/ https://git.sr.ht/ https://gitlab.com/simple-nixos-mailserver/ https://github.com/nixos/nixpkgs/ http:// https:// extraOptions = '' - allowed-uris = ssh://gitea@git.emile.space git+https://git.emile.space https://git.emile.space https://portswigger-cdn.net https://git.sr.ht/ https://gitlab.com/simple-nixos-mailserver https://github.com/nixos/nixpkgs http:// https:// - builders-use-substitutes = true + builders-use-substitutes = true ''; + settings.allowed-uris = [ + "github:" + "git+https://github.com/" + "git+ssh://github.com/" + ]; + buildMachines = [ { hostName = "localhost"; |