summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/binary-cache
diff options
context:
space:
mode:
Diffstat (limited to 'makefu/2configs/binary-cache')
-rw-r--r--makefu/2configs/binary-cache/gum.nix13
-rw-r--r--makefu/2configs/binary-cache/lass.nix13
-rw-r--r--makefu/2configs/binary-cache/nixos.nix12
-rw-r--r--makefu/2configs/binary-cache/server.nix24
4 files changed, 0 insertions, 62 deletions
diff --git a/makefu/2configs/binary-cache/gum.nix b/makefu/2configs/binary-cache/gum.nix
deleted file mode 100644
index fc54bd91..00000000
--- a/makefu/2configs/binary-cache/gum.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-
-{ config, ... }:
-
-{
- nix = {
- binaryCaches = [
- "https://cache.euer.krebsco.de/"
- ];
- binaryCachePublicKeys = [
- "gum:iIXIFlCAotib+MgI3V/i3HMlFXiVYOT/jfP0y54Zuvg="
- ];
- };
-}
diff --git a/makefu/2configs/binary-cache/lass.nix b/makefu/2configs/binary-cache/lass.nix
deleted file mode 100644
index 51b4a1af..00000000
--- a/makefu/2configs/binary-cache/lass.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{ config, ... }:
-
-{
- nix = {
- binaryCaches = [
- "https://cache.krebsco.de"
- ];
- binaryCachePublicKeys = [
- "cache.prism-1:+S+6Lo/n27XEtvdlQKuJIcb1yO5NUqUCE2lolmTgNJU="
- "cache.prism-2:YwmCm3/s/D+SxrPKN/ETjlpw/219pNUbpnluatp6FKI="
- ];
- };
-}
diff --git a/makefu/2configs/binary-cache/nixos.nix b/makefu/2configs/binary-cache/nixos.nix
deleted file mode 100644
index 2ff5e130..00000000
--- a/makefu/2configs/binary-cache/nixos.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{ config, ... }:
-
-{
- nix = {
- binaryCaches = [
- "https://cache.nixos.org/"
- ];
- binaryCachePublicKeys = [
- "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
- ];
- };
-}
diff --git a/makefu/2configs/binary-cache/server.nix b/makefu/2configs/binary-cache/server.nix
deleted file mode 100644
index c1ae16e2..00000000
--- a/makefu/2configs/binary-cache/server.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ config, lib, pkgs, ...}:
-
-{
- # generate private key with:
- # nix-store --generate-binary-cache-key gum nix-serve.key nix-serve.pub
- services.nix-serve = {
- enable = true;
- port = 5001;
- secretKeyFile = toString <secrets> + "/nix-serve.key";
- };
-
- services.nginx = {
- enable = true;
- virtualHosts."cache.euer.krebsco.de" = {
- forceSSL = true;
- enableACME = true;
- serverAliases = [ # "cache.gum.r"
- "cache.gum.krebsco.de"
- ];
- locations."/".proxyPass= "http://localhost:${toString config.services.nix-serve.port}";
- };
- };
-}
-