summaryrefslogtreecommitdiffstats
path: root/lass/2configs/binary-cache
diff options
context:
space:
mode:
Diffstat (limited to 'lass/2configs/binary-cache')
-rw-r--r--lass/2configs/binary-cache/client.nix16
-rw-r--r--lass/2configs/binary-cache/server.nix37
2 files changed, 0 insertions, 53 deletions
diff --git a/lass/2configs/binary-cache/client.nix b/lass/2configs/binary-cache/client.nix
deleted file mode 100644
index b0e0a8b8..00000000
--- a/lass/2configs/binary-cache/client.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ config, ... }:
-
-{
- nix = {
- binaryCaches = [
- "http://cache.prism.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/server.nix b/lass/2configs/binary-cache/server.nix
deleted file mode 100644
index 1abf51ae..00000000
--- a/lass/2configs/binary-cache/server.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ config, lib, pkgs, stockholm, ...}:
-
-{
- # 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.prism.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
- ''};
- '';
- };
- virtualHosts."cache.krebsco.de" = {
- forceSSL = true;
- serverAliases = [ "cache.lassul.us" ];
- enableACME = true;
- locations."/".extraConfig = ''
- proxy_pass http://localhost:${toString config.services.nix-serve.port};
- '';
- };
- };
-}
-