diff options
author | makefu <github@syntax-fehler.de> | 2023-07-28 22:24:15 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2023-07-28 22:24:15 +0200 |
commit | 060a8f28fa1fc648bdf66afb31a5d1efac868837 (patch) | |
tree | 2b354eacc7897365ee45244fe7a51720e0d0333f /makefu/1systems/wry | |
parent | cbfcc890e3b76d942b927809bf981a5fa7289e6a (diff) |
makefu: move out to own repo, add vacation-note
Diffstat (limited to 'makefu/1systems/wry')
-rw-r--r-- | makefu/1systems/wry/config.nix | 54 | ||||
-rw-r--r-- | makefu/1systems/wry/source.nix | 3 |
2 files changed, 0 insertions, 57 deletions
diff --git a/makefu/1systems/wry/config.nix b/makefu/1systems/wry/config.nix deleted file mode 100644 index b728703ec..000000000 --- a/makefu/1systems/wry/config.nix +++ /dev/null @@ -1,54 +0,0 @@ -{ config, lib, pkgs, ... }: - -with import <stockholm/lib>; -let - - external-ip = config.krebs.build.host.nets.internet.ip4.addr; - internal-ip = config.krebs.build.host.nets.retiolum.ip4.addr; -in { - imports = [ - <stockholm/makefu> - # TODO: copy this config or move to krebs - <stockholm/makefu/2configs/hw/CAC.nix> - <stockholm/makefu/2configs/fs/CAC-CentOS-7-64bit.nix> - <stockholm/makefu/2configs/save-diskspace.nix> - - # <stockholm/makefu/2configs/bepasty-dual.nix> - - <stockholm/makefu/2configs/iodined.nix> - <stockholm/makefu/2configs/backup.nix> - - # other nginx - # <stockholm/makefu/2configs/nginx/euer.test.nix> - - # collectd - <stockholm/makefu/2configs/stats/client.nix> - <stockholm/makefu/2configs/logging/client.nix> - - <stockholm/makefu/2configs/tinc/retiolum.nix> - # <stockholm/makefu/2configs/torrent.nix> - ]; - - krebs.build.host = config.krebs.hosts.wry; - - # prepare graphs - services.nginx.enable = true; - krebs.retiolum-bootstrap.enable = true; - - networking = { - firewall = { - allowPing = true; - logRefusedConnections = false; - allowedTCPPorts = [ 53 80 443 ]; - allowedUDPPorts = [ 655 53 ]; - }; - interfaces.enp2s1.ipv4.addresses = [{ - address = external-ip; - prefixLength = 24; - }]; - defaultGateway = "104.233.87.1"; - nameservers = [ "8.8.8.8" ]; - }; - - environment.systemPackages = [ pkgs.screen ]; -} diff --git a/makefu/1systems/wry/source.nix b/makefu/1systems/wry/source.nix deleted file mode 100644 index 730300590..000000000 --- a/makefu/1systems/wry/source.nix +++ /dev/null @@ -1,3 +0,0 @@ -{ - name="wry"; -} |