summaryrefslogtreecommitdiffstats
path: root/tv/2configs/binary-cache/default.nix
blob: 58791f4f6b9a1e85055e92c124323f27430a1834 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ config, lib, pkgs, ... }: with import <stockholm/lib>;
{
  environment.etc."binary-cache.pubkey".text =
    config.krebs.build.host.binary-cache.pubkey;

  nixpkgs.overlays = [
    (self: super: {
      nix-serve = self.haskellPackages.nix-serve-ng;
    })
  ];

  services.nix-serve = {
    enable = true;
    secretKeyFile = toString <secrets> + "/nix-serve.key";
  };

  services.nginx = {
    enable = true;
    virtualHosts.nix-serve = {
      serverAliases = [
        "cache.${config.krebs.build.host.name}.hkw"
        "cache.${config.krebs.build.host.name}.r"
      ];
      locations."/".extraConfig = ''
        proxy_pass http://localhost:${toString config.services.nix-serve.port};
      '';
    };
  };
}