diff options
author | lassulus <lass@aidsballs.de> | 2016-06-25 18:56:39 +0200 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2016-06-25 18:56:39 +0200 |
commit | f6d5a9716f8a9dbefbeae19e43b5324f90cb543b (patch) | |
tree | 54f5432102bb858e56a74ed95be5bb187277da35 /lass/1systems/prism.nix | |
parent | 9fd537b4d6fe0356324676f38a195bc59c01b0bd (diff) |
l: move binary-cache config to 2
Diffstat (limited to 'lass/1systems/prism.nix')
-rw-r--r-- | lass/1systems/prism.nix | 25 |
1 files changed, 1 insertions, 24 deletions
diff --git a/lass/1systems/prism.nix b/lass/1systems/prism.nix index 34c1ef69b..8dfc11f60 100644 --- a/lass/1systems/prism.nix +++ b/lass/1systems/prism.nix @@ -20,6 +20,7 @@ in { ../2configs/radio.nix ../2configs/buildbot-standalone.nix ../2configs/repo-sync.nix + ../2configs/binary-cache/server.nix { imports = [ ../2configs/git.nix @@ -211,30 +212,6 @@ in { '') ]; } - { - services.nix-serve = { - 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.prism.r" ]; - locations = lib.singleton (lib.nameValuePair "/" '' - proxy_pass http://localhost:${toString config.services.nix-serve.port}; - ''); - }; - }; - } ]; krebs.build.host = config.krebs.hosts.prism; |