diff options
author | Karel Kočí <cynerd@email.cz> | 2024-04-09 13:45:50 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2024-04-09 13:45:50 +0200 |
commit | b8f5007dbcb0a9393016fec83a27b5a017327d2b (patch) | |
tree | ae59b4a7c8aa901947984f75e71e75d453182718 /nixos/configurations | |
parent | dae967fb154468e90bbbaaf8a65bf13e8e8d1531 (diff) | |
download | nixos-personal-b8f5007dbcb0a9393016fec83a27b5a017327d2b.tar.gz nixos-personal-b8f5007dbcb0a9393016fec83a27b5a017327d2b.tar.bz2 nixos-personal-b8f5007dbcb0a9393016fec83a27b5a017327d2b.zip |
wireguard: drop dean as endpoint
This doesn't work correctly because dean doesn't have public IP and thus
can't be discovered easilly.
Diffstat (limited to 'nixos/configurations')
-rw-r--r-- | nixos/configurations/dean.nix | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/nixos/configurations/dean.nix b/nixos/configurations/dean.nix index c903794..adc9e87 100644 --- a/nixos/configurations/dean.nix +++ b/nixos/configurations/dean.nix @@ -16,11 +16,6 @@ in { networking = { useNetworkd = true; useDHCP = false; - nat = { - enable = true; - externalInterface = "brlan"; - internalInterfaces = ["wg"]; - }; }; systemd.network = { netdevs."brlab".netdevConfig = { @@ -39,7 +34,6 @@ in { matchConfig.Name = "lan* end0"; networkConfig.Bridge = "brlan"; }; - "wg".networkConfig.IPForward = mkForce "yes"; }; # TODO investigate why it doesn't work wait-online.enable = false; |