From fd040ca62bde396a1f037db2f42baa7c856e7584 Mon Sep 17 00:00:00 2001 From: Bun Date: Sun, 16 Mar 2025 03:16:43 -0400 Subject: [PATCH] IP for tablet too sure --- hosts/intuos/default.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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;