From 0fd9b0264f0b6d8745741cf7cd08185c29d5aaa5 Mon Sep 17 00:00:00 2001 From: Chris Kruining Date: Wed, 8 Oct 2025 07:45:27 +0200 Subject: [PATCH] add static ip's --- systems/x86_64-linux/ulmo/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/systems/x86_64-linux/ulmo/default.nix b/systems/x86_64-linux/ulmo/default.nix index 4d1c4ab..0f3ac1c 100644 --- a/systems/x86_64-linux/ulmo/default.nix +++ b/systems/x86_64-linux/ulmo/default.nix @@ -5,6 +5,16 @@ ./hardware.nix ]; + networking.interfaces.enp2s0 = { + ipv6.addresses = [ + { address = "2a0d:6e00:1dc9:0::dead:beef"; prefixLength = 64; } + ]; + + ipv4.addresses = [ + { address = "192.168.1.3"; prefixLength = 16; } + ]; + }; + sneeuwvlok = { services = { authentication.authelia.enable = true;