diff options
| author | makefu <github@syntax-fehler.de> | 2023-09-09 19:42:08 +0200 |
|---|---|---|
| committer | makefu <github@syntax-fehler.de> | 2023-09-09 19:42:08 +0200 |
| commit | 29d72c898d674d2c18fc0f4a76b5e623de0c3dfe (patch) | |
| tree | fc4b0695c986a1cda6f1fbbbcbe716e203c54fa3 /lass/2configs/binary-cache | |
| parent | e157ffa72856e4378aa23b096b2efff233f3cb3d (diff) | |
| parent | 083229d0211096daec08673f743ccc45b1d8a0ac (diff) | |
Merge remote-tracking branch 'lass/master'
Diffstat (limited to 'lass/2configs/binary-cache')
| -rw-r--r-- | lass/2configs/binary-cache/client.nix | 17 | ||||
| -rw-r--r-- | lass/2configs/binary-cache/proxy.nix | 13 | ||||
| -rw-r--r-- | lass/2configs/binary-cache/server.nix | 31 |
3 files changed, 0 insertions, 61 deletions
diff --git a/lass/2configs/binary-cache/client.nix b/lass/2configs/binary-cache/client.nix deleted file mode 100644 index de15aff92..000000000 --- a/lass/2configs/binary-cache/client.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ config, ... }: - -{ - nix = { - binaryCaches = [ - "http://cache.prism.r" - "http://cache.neoprism.r" - "https://cache.nixos.org/" - ]; - binaryCachePublicKeys = [ - "cache.prism-1:+S+6Lo/n27XEtvdlQKuJIcb1yO5NUqUCE2lolmTgNJU=" - "cache.prism-2:YwmCm3/s/D+SxrPKN/ETjlpw/219pNUbpnluatp6FKI=" - "hydra.nixos.org-1:CNHJZBh9K4tP3EKF6FkkgeVYsS3ohTl+oS0Qa8bezVs=" - ]; - }; -} - diff --git a/lass/2configs/binary-cache/proxy.nix b/lass/2configs/binary-cache/proxy.nix deleted file mode 100644 index a6ecb044d..000000000 --- a/lass/2configs/binary-cache/proxy.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ config, lib, pkgs, ...}: -{ - services.nginx = { - enable = true; - virtualHosts."cache.krebsco.de" = { - enableACME = true; - forceSSL = true; - locations."/".extraConfig = '' - proxy_pass http://cache.neoprism.r/; - ''; - }; - }; -} diff --git a/lass/2configs/binary-cache/server.nix b/lass/2configs/binary-cache/server.nix deleted file mode 100644 index bdd568c15..000000000 --- a/lass/2configs/binary-cache/server.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ config, lib, pkgs, ...}: -{ - nixpkgs.config.packageOverrides = p: { - nix-serve = p.haskellPackages.nix-serve-ng; - }; - # generate private key with: - # nix-store --generate-binary-cache-key my-secret-key my-public-key - services.nix-serve = { - enable = true; - secretKeyFile = toString <secrets> + "/nix-serve.key"; - port = 5005; - }; - - services.nginx = { - enable = true; - virtualHosts.nix-serve = { - serverAliases = [ "cache.${config.networking.hostName}.r" ]; - locations."/".extraConfig = '' - proxy_pass http://localhost:${toString config.services.nix-serve.port}; - ''; - locations."= /nix-cache-info".extraConfig = '' - alias ${pkgs.writeText "cache-info" '' - StoreDir: /nix/store - WantMassQuery: 1 - Priority: 42 - ''}; - ''; - }; - }; -} - |
