From a7f0c6d0e4e27f2fdabbde5c0d56985bca55e032 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Wed, 21 Feb 2024 02:36:57 +0300 Subject: [PATCH] Network : Enable default dhcp setting for legacy reasons. --- .config/linux/system/module/common/Network.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/linux/system/module/common/Network.nix b/.config/linux/system/module/common/Network.nix index a6a5e28..2f4e371 100644 --- a/.config/linux/system/module/common/Network.nix +++ b/.config/linux/system/module/common/Network.nix @@ -1,3 +1,4 @@ -{ ... }: { +{ lib, ... }: { + networking.useDHCP = lib.mkDefault true; networking.networkmanager.enable = true; }