From 8c9b919856506531600b214e0a3a00ce0833013d Mon Sep 17 00:00:00 2001 From: Ivan Kuznetsov Date: Tue, 17 Sep 2024 11:10:51 +0000 Subject: [PATCH] FMO-52: Systemd.networkd and NetworkManager are not able to work together * For netwm we need to disable systemd.networkd dhcp to keep that manageable only with NetworkManager Signed-off-by: Ivan Kuznetsov --- hardware/fmo-os-rugged-laptop-7330.nix | 1 + hardware/fmo-os-rugged-tablet-7230.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/hardware/fmo-os-rugged-laptop-7330.nix b/hardware/fmo-os-rugged-laptop-7330.nix index 7ce98e3..ed1f6a7 100644 --- a/hardware/fmo-os-rugged-laptop-7330.nix +++ b/hardware/fmo-os-rugged-laptop-7330.nix @@ -66,6 +66,7 @@ { users.users."ghaf".extraGroups = ["networkmanager"]; networking = { + useDHCP = false; nat = { enable = true; internalIPs = [ "192.168.101.0/24" ]; diff --git a/hardware/fmo-os-rugged-tablet-7230.nix b/hardware/fmo-os-rugged-tablet-7230.nix index 5213924..75ea513 100644 --- a/hardware/fmo-os-rugged-tablet-7230.nix +++ b/hardware/fmo-os-rugged-tablet-7230.nix @@ -66,6 +66,7 @@ { users.users."ghaf".extraGroups = ["networkmanager"]; networking = { + useDHCP = false; nat = { enable = true; internalIPs = [ "192.168.101.0/24" ];