stockholm/tv/2configs/binary-cache/default.nix

34 lines
860 B
Nix
Raw Normal View History

2016-10-20 18:54:38 +00:00
{ config, lib, pkgs, ... }: with import <stockholm/lib>;
2016-02-27 14:13:10 +00:00
{
environment.etc."binary-cache.pubkey".text =
config.krebs.build.host.binary-cache.pubkey;
services.nix-serve = {
2016-02-27 14:13:10 +00:00
enable = true;
secretKeyFile = config.krebs.secret.files.binary-cache-seckey.path;
2016-02-27 14:13:10 +00:00
};
2016-02-27 14:13:10 +00:00
systemd.services.nix-serve = {
requires = ["secret.service"];
after = ["secret.service"];
};
krebs.secret.files.binary-cache-seckey = {
2016-02-27 14:13:10 +00:00
path = "/run/secret/nix-serve.key";
owner.name = "nix-serve";
source-path = toString <secrets> + "/nix-serve.key";
};
services.nginx = {
2016-02-27 14:13:10 +00:00
enable = true;
virtualHosts.nix-serve = {
serverAliases = [
"cache.${config.krebs.build.host.name}.gg23"
];
locations."/".extraConfig = ''
2016-02-27 14:13:10 +00:00
proxy_pass http://localhost:${toString config.services.nix-serve.port};
'';
2016-02-27 14:13:10 +00:00
};
};
}