From c563b57974224bd2dff44621dfaa7622816a14f0 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Thu, 19 Feb 2026 19:50:28 -0600 Subject: [PATCH] opt: remove dead code --- hosts/unstable/jeremiah/hardware-configuration.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/hosts/unstable/jeremiah/hardware-configuration.nix b/hosts/unstable/jeremiah/hardware-configuration.nix index 7ef2275..42e88a3 100644 --- a/hosts/unstable/jeremiah/hardware-configuration.nix +++ b/hosts/unstable/jeremiah/hardware-configuration.nix @@ -4,13 +4,10 @@ { config, lib, - modulesPath, ... }: { - imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" @@ -45,9 +42,6 @@ # still possible to use this option, but it's recommended to use it in conjunction # with explicit per-interface declarations with `networking.interfaces..useDHCP`. networking.useDHCP = lib.mkDefault true; - # networking.interfaces.enp67s0.useDHCP = lib.mkDefault true; - # networking.interfaces.enp68s0.useDHCP = lib.mkDefault true; - # networking.interfaces.wlo2.useDHCP = lib.mkDefault true; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }