From 31e4f14ee6f8a7d93be1f55649f2f1e3306c5f6a Mon Sep 17 00:00:00 2001 From: arouzing Date: Thu, 2 Feb 2023 18:16:56 -0500 Subject: [PATCH] enforce dchp for stress less deployments --- .modules/base/hardware.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/.modules/base/hardware.nix b/.modules/base/hardware.nix index 0622787..689cd87 100644 --- a/.modules/base/hardware.nix +++ b/.modules/base/hardware.nix @@ -5,6 +5,7 @@ imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; + networking.useDHCP = true; # boot.initrd.availableKernelModules = [ "uhci_hcd" "ehci_pci" "ahci" "usbhid" "sd_mod" "sdhci_pci" ]; # boot.initrd.kernelModules = [ "dm-snapshot" ]; # boot.kernelModules = [ "kvm-intel" "wl" ];