diff --git a/hosts/intuos/default.nix b/hosts/intuos/default.nix index 57cdc79e..6b863af0 100644 --- a/hosts/intuos/default.nix +++ b/hosts/intuos/default.nix @@ -9,7 +9,17 @@ ../../modules/system ]; - networking.hostName = "intuos"; + networking = { + hostName = "intuos"; + interfaces."wlan0".ipv4.addresses = [{ + address = "10.2.0.102"; + prefixLength = 8; + }]; + defaultGateway = { + address = "10.1.0.1"; + interface = "wlan0"; + }; + }; system = { desktop.enable = true;