From 93a64e881679ac8dd76f67b909df7bc85ac851ce Mon Sep 17 00:00:00 2001 From: Grigory Shipunov Date: Thu, 2 Jan 2025 18:23:46 +0000 Subject: initial cloud config --- hosts/cloud/networking.nix | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 hosts/cloud/networking.nix (limited to 'hosts/cloud/networking.nix') diff --git a/hosts/cloud/networking.nix b/hosts/cloud/networking.nix new file mode 100644 index 0000000..f219659 --- /dev/null +++ b/hosts/cloud/networking.nix @@ -0,0 +1,33 @@ +{ lib, ... }: { + # This file was populated at runtime with the networking + # details gathered from the active system. + networking = { + nameservers = [ "2a01:4ff:ff00::add:1" + "2a01:4ff:ff00::add:2" + "185.12.64.1" + ]; + defaultGateway = "172.31.1.1"; + defaultGateway6 = { + address = "fe80::1"; + interface = "eth0"; + }; + dhcpcd.enable = false; + usePredictableInterfaceNames = lib.mkForce false; + interfaces = { + eth0 = { + ipv4.addresses = [ + { address="188.245.196.27"; prefixLength=32; } + ]; + ipv6.addresses = [ + { address="2a01:4f8:c17:7f8a::1"; prefixLength=64; } +{ address="fe80::9400:3ff:fef6:132d"; prefixLength=64; } + ]; + ipv4.routes = [ { address = "172.31.1.1"; prefixLength = 32; } ]; + ipv6.routes = [ { address = "fe80::1"; prefixLength = 128; } ]; + }; + }; + }; + services.udev.extraRules = '' + ATTR{address}=="96:00:03:f6:13:2d", NAME="eth0" + ''; +} -- cgit v1.3.1