From b305a2ea680839652ed7d5be770408eff040ffed Mon Sep 17 00:00:00 2001 From: Amneesh Singh Date: Thu, 10 Nov 2022 20:03:36 +0530 Subject: [PATCH] hosts/satori: random Signed-off-by: Amneesh Singh --- hosts/satori/boot.nix | 1 - hosts/satori/networking.nix | 13 ------------- 2 files changed, 14 deletions(-) diff --git a/hosts/satori/boot.nix b/hosts/satori/boot.nix index 4b6d470..d91032c 100644 --- a/hosts/satori/boot.nix +++ b/hosts/satori/boot.nix @@ -35,6 +35,5 @@ }; }; binfmt.emulatedSystems = [ "aarch64-linux" ]; - zfs.extraPools = [ "stuff" ]; }; } diff --git a/hosts/satori/networking.nix b/hosts/satori/networking.nix index 03f4e81..5628c3f 100644 --- a/hosts/satori/networking.nix +++ b/hosts/satori/networking.nix @@ -11,18 +11,6 @@ allowedUDPPorts = [ 22 17840 18172 ]; trustedInterfaces = [ "docker0" ]; }; - - defaultGateway = "192.168.1.1"; - - interfaces = { - enp7s0 = { - useDHCP = true; - ipv4.addresses = [{ - prefixLength = 24; - address = "192.168.1.109"; - }]; - }; - }; wireguard.interfaces.wg0 = { ips = [ "10.55.0.3/32" ]; listenPort = 17840; @@ -37,6 +25,5 @@ } ]; }; - nameservers = [ "1.1.1.1" "8.8.8.8" ]; }; }