From a5a85625719feaade04a5c7f10af991c81b7ffb1 Mon Sep 17 00:00:00 2001 From: Gustav Bruhn Date: Fri, 21 Mar 2025 10:20:40 +0100 Subject: [PATCH] 60 current 2025-03-21 10:20:38 25.05.20250315.c80f6a7 6.12.19 * --- hosts/framework/configuration.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/hosts/framework/configuration.nix b/hosts/framework/configuration.nix index e7bb78a..a5f0a90 100644 --- a/hosts/framework/configuration.nix +++ b/hosts/framework/configuration.nix @@ -26,7 +26,15 @@ # Use systemd-networkd for the Ethernet interface networking.useNetworkd = true; - networking.interfaces.enp195s0f3u1u1.useDHCP = true; + networking.interfaces.enp195s0f3u1u1 = { + useDHCP = false; + ipv4.addresses = [ + { + address = "192.168.1.100"; # Choose an IP in the same subnet as the Raspberry Pi + prefixLength = 24; + } + ]; + }; # Set your time zone. time.timeZone = "Europe/Stockholm";