diff options
author | tv <tv@krebsco.de> | 2016-11-24 23:07:48 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2016-11-24 23:07:48 +0100 |
commit | ba9822b3a4b74f7415caf7de38aab5dc03db67bd (patch) | |
tree | 215cc80ce1af1eaff17959cce1e5acf22bc33f81 /tv/2configs/wu-binary-cache | |
parent | 2ee720dd25f711bdad6df3e6c56369dad96a9d05 (diff) |
tv binary-cache: replace wu by xu and use hosts.binary-cache.pubkey
Diffstat (limited to 'tv/2configs/wu-binary-cache')
-rw-r--r-- | tv/2configs/wu-binary-cache/client.nix | 7 | ||||
-rw-r--r-- | tv/2configs/wu-binary-cache/default.nix | 25 |
2 files changed, 0 insertions, 32 deletions
diff --git a/tv/2configs/wu-binary-cache/client.nix b/tv/2configs/wu-binary-cache/client.nix deleted file mode 100644 index 9634c21..0000000 --- a/tv/2configs/wu-binary-cache/client.nix +++ /dev/null @@ -1,7 +0,0 @@ -_: -{ - nix = { - binaryCaches = ["http://cache.wu.gg23"]; - binaryCachePublicKeys = ["cache.wu-1:cdhA201O2R2Ect463vhJFmhpMaNyT/tOvzYvtceT9q8="]; - }; -} diff --git a/tv/2configs/wu-binary-cache/default.nix b/tv/2configs/wu-binary-cache/default.nix deleted file mode 100644 index f039a55..0000000 --- a/tv/2configs/wu-binary-cache/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ config, lib, pkgs, ... }: with import <stockholm/lib>; -{ - services.nix-serve = assert config.krebs.build.host.name == "wu"; { - enable = true; - secretKeyFile = config.krebs.secret.files.nix-serve-key.path; - }; - systemd.services.nix-serve = { - requires = ["secret.service"]; - after = ["secret.service"]; - }; - krebs.secret.files.nix-serve-key = { - path = "/run/secret/nix-serve.key"; - owner.name = "nix-serve"; - source-path = toString <secrets> + "/nix-serve.key"; - }; - krebs.nginx = { - enable = true; - servers.nix-serve = { - server-names = [ "cache.wu.gg23" ]; - locations = singleton (nameValuePair "/" '' - proxy_pass http://localhost:${toString config.services.nix-serve.port}; - ''); - }; - }; -} |