diff options
author | Ben Sima <ben@bsima.me> | 2021-10-17 11:52:47 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-11-26 13:47:38 -0500 |
commit | f432b7057738cb5123c8e1b506a2a1199e71ee72 (patch) | |
tree | f9a1f2eda099530934ea1f56d58ea08ba25e304b /Biz/Cloud/Networking.nix | |
parent | 8e1340bda701171e3557840332c4f3c30e1afc28 (diff) |
Update cloud services
Rebuilt email server, started wireguard setup.
Diffstat (limited to 'Biz/Cloud/Networking.nix')
-rw-r--r-- | Biz/Cloud/Networking.nix | 45 |
1 files changed, 17 insertions, 28 deletions
diff --git a/Biz/Cloud/Networking.nix b/Biz/Cloud/Networking.nix index fa41650..05a1608 100644 --- a/Biz/Cloud/Networking.nix +++ b/Biz/Cloud/Networking.nix @@ -1,42 +1,31 @@ -{ lib, config, ... }: - -let - ports = import ./Ports.nix; -in { +{ lib, ... }: { + # This file was populated at runtime with the networking + # details gathered from the active system. networking = { - firewall = { - allowedTCPPorts = [ - ports.ssh - ports.git - ports.http - ports.https - ports.sabten - ports.gemini - ports.radicale - ]; - }; - nameservers = [ - "67.207.67.2" - "67.207.67.3" - ]; - defaultGateway = "159.89.128.1"; - defaultGateway6 = "2604:a880:2:d0::1"; + nameservers = [ "8.8.8.8" + ]; + defaultGateway = "143.198.112.1"; + defaultGateway6 = "2604:a880:400:d0::1"; dhcpcd.enable = false; - usePredictableInterfaceNames = lib.mkForce true; + usePredictableInterfaceNames = lib.mkForce false; interfaces = { eth0 = { ipv4.addresses = [ - { address="159.89.128.69"; prefixLength=20; } - { address="10.46.0.6"; prefixLength=16; } + { address="143.198.118.179"; prefixLength=20; } +{ address="10.10.0.7"; prefixLength=16; } ]; ipv6.addresses = [ - { address="2604:a880:2:d0::35:c001"; prefixLength = 64; } - { address="fe80::e899:c0ff:fe9c:e194"; prefixLength = 64; } + { address="2604:a880:400:d0::19f1:7001"; prefixLength=64; } +{ address="fe80::a06e:26ff:fee1:941"; prefixLength=64; } ]; + ipv4.routes = [ { address = "143.198.112.1"; prefixLength = 32; } ]; + ipv6.routes = [ { address = "2604:a880:400:d0::1"; prefixLength = 128; } ]; }; + }; }; services.udev.extraRules = '' - ATTR{address}=="ea:99:c0:9c:e1:94", NAME="eth0" + ATTR{address}=="a2:6e:26:e1:09:41", NAME="eth0" + ATTR{address}=="f2:4e:52:1a:72:ef", NAME="eth1" ''; } |