From dad2250c779466e11b8368636170570441c13a5a Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Sun, 8 Jan 2023 11:10:06 +0100 Subject: [PATCH] sombrero: Assign static ip (ETHERNET) --- hosts/sombrero/configuration.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/hosts/sombrero/configuration.nix b/hosts/sombrero/configuration.nix index 6bf49d0..9f53d59 100644 --- a/hosts/sombrero/configuration.nix +++ b/hosts/sombrero/configuration.nix @@ -46,12 +46,11 @@ networking = { hostName = "sombrero"; - wireless = { - enable = true; - networks."pretty-fly-for-a-wifi".psk = "latkatt1"; - interfaces = [ - "wlan0" - ]; + ipv4 = { + addresses = [{ + address = "192.168.50.200"; + prefixLength = 24; + }]; }; };