summaryrefslogtreecommitdiffstats
path: root/tv/2configs/binary-cache
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2016-11-24 23:07:48 +0100
committertv <tv@krebsco.de>2016-11-24 23:07:48 +0100
commitba9822b3a4b74f7415caf7de38aab5dc03db67bd (patch)
tree215cc80ce1af1eaff17959cce1e5acf22bc33f81 /tv/2configs/binary-cache
parent2ee720dd25f711bdad6df3e6c56369dad96a9d05 (diff)
tv binary-cache: replace wu by xu and use hosts.binary-cache.pubkey
Diffstat (limited to 'tv/2configs/binary-cache')
-rw-r--r--tv/2configs/binary-cache/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/tv/2configs/binary-cache/default.nix b/tv/2configs/binary-cache/default.nix
new file mode 100644
index 0000000..5902f18
--- /dev/null
+++ b/tv/2configs/binary-cache/default.nix
@@ -0,0 +1,33 @@
+{ config, lib, pkgs, ... }: with import <stockholm/lib>;
+{
+ environment.etc."binary-cache.pubkey".text =
+ config.krebs.build.host.binary-cache.pubkey;
+
+ services.nix-serve = {
+ enable = true;
+ secretKeyFile = config.krebs.secret.files.binary-cache-seckey.path;
+ };
+
+ systemd.services.nix-serve = {
+ requires = ["secret.service"];
+ after = ["secret.service"];
+ };
+
+ krebs.secret.files.binary-cache-seckey = {
+ 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.${config.krebs.build.host.name}.gg23"
+ ];
+ locations = singleton (nameValuePair "/" ''
+ proxy_pass http://localhost:${toString config.services.nix-serve.port};
+ '');
+ };
+ };
+}