From 9cc1ae1d48b23ec8211d3875e61ce5d1ea5e9f6c Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Tue, 9 Jan 2024 11:50:12 +0530 Subject: hosts: mox -> fscusat --- hosts/fscusat/modules/network.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 hosts/fscusat/modules/network.nix (limited to 'hosts/fscusat/modules/network.nix') diff --git a/hosts/fscusat/modules/network.nix b/hosts/fscusat/modules/network.nix new file mode 100644 index 0000000..53367f8 --- /dev/null +++ b/hosts/fscusat/modules/network.nix @@ -0,0 +1,18 @@ +{ ... }: + +let + wan = "ens18"; +in +{ + networking = { + interfaces.${wan}.ipv4.addresses = [{ + address = "10.0.8.101"; + prefixLength = 16; + }]; + defaultGateway = { + address = "10.0.0.1"; + interface = wan; + }; + nameservers = [ "10.0.0.2" "10.0.0.3" ]; + }; +} -- cgit v1.2.3