From 3e5784056f70a6afb2015ad78998d88c2c0c05fb Mon Sep 17 00:00:00 2001 From: Jimbo Date: Fri, 28 Feb 2025 10:35:46 -0500 Subject: [PATCH] Remove unnecessary hardware DHCP enablement --- hosts/envy/hardware/default.nix | 1 - hosts/iso/hardware/default.nix | 1 - hosts/kitty/hardware/default.nix | 1 - hosts/lacros/hardware/default.nix | 1 - hosts/midas/hardware/default.nix | 1 - hosts/prophet/hardware/default.nix | 1 - hosts/redmond/hardware/default.nix | 1 - hosts/rubble/hardware/default.nix | 1 - hosts/tower/hardware/default.nix | 1 - 9 files changed, 9 deletions(-) diff --git a/hosts/envy/hardware/default.nix b/hosts/envy/hardware/default.nix index 0430f9f0..336ed03c 100644 --- a/hosts/envy/hardware/default.nix +++ b/hosts/envy/hardware/default.nix @@ -6,7 +6,6 @@ boot.initrd.availableKernelModules = [ "xhci_pci" "sr_mod" ]; boot.initrd.kernelModules = [ "dm-snapshot" ]; - networking.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; } diff --git a/hosts/iso/hardware/default.nix b/hosts/iso/hardware/default.nix index 2b718c01..18f153e4 100644 --- a/hosts/iso/hardware/default.nix +++ b/hosts/iso/hardware/default.nix @@ -5,7 +5,6 @@ (modulesPath + "/installer/cd-dvd/channel.nix") ]; - networking.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; } diff --git a/hosts/kitty/hardware/default.nix b/hosts/kitty/hardware/default.nix index ebb576a9..3b62a4f3 100644 --- a/hosts/kitty/hardware/default.nix +++ b/hosts/kitty/hardware/default.nix @@ -3,7 +3,6 @@ boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "nvme" "usbhid" "sd_mod" "sr_mod" ]; boot.initrd.kernelModules = [ "kvm-intel" ]; - networking.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; } diff --git a/hosts/lacros/hardware/default.nix b/hosts/lacros/hardware/default.nix index 265bcd74..018398b6 100644 --- a/hosts/lacros/hardware/default.nix +++ b/hosts/lacros/hardware/default.nix @@ -6,7 +6,6 @@ boot.initrd.availableKernelModules = [ "xhci_pci" "usb_storage" "sd_mod" "sdhci_pci" ]; boot.kernelModules = [ "kvm-intel" "dm-snapshot" ]; - networking.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; } diff --git a/hosts/midas/hardware/default.nix b/hosts/midas/hardware/default.nix index 6e5be0ac..5547956b 100644 --- a/hosts/midas/hardware/default.nix +++ b/hosts/midas/hardware/default.nix @@ -6,7 +6,6 @@ boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "sd_mod" ]; boot.initrd.kernelModules = [ "dm-snapshot" ]; - networking.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; } diff --git a/hosts/prophet/hardware/default.nix b/hosts/prophet/hardware/default.nix index 06425dc5..de7d9845 100644 --- a/hosts/prophet/hardware/default.nix +++ b/hosts/prophet/hardware/default.nix @@ -3,6 +3,5 @@ boot.initrd.availableKernelModules = [ "xhci_pci" "virtio_scsi" ]; boot.initrd.kernelModules = [ "dm-snapshot" ]; - networking.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux"; } diff --git a/hosts/redmond/hardware/default.nix b/hosts/redmond/hardware/default.nix index 7d3b6f4f..e1f7c30f 100644 --- a/hosts/redmond/hardware/default.nix +++ b/hosts/redmond/hardware/default.nix @@ -7,7 +7,6 @@ boot.initrd.kernelModules = [ "dm-snapshot" ]; boot.kernelModules = [ "kvm-amd" ]; - networking.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; } diff --git a/hosts/rubble/hardware/default.nix b/hosts/rubble/hardware/default.nix index 807641ab..baab64a9 100644 --- a/hosts/rubble/hardware/default.nix +++ b/hosts/rubble/hardware/default.nix @@ -4,6 +4,5 @@ boot.initrd.kernelModules = [ "ahci" "dm-snapshot" "mmc_core" "pcie_rockchip_host" "phy_rockchip_pcie" "rockchip_dfi" "rockchip_thermal" "rtc_rk808" "rockchip_saradc" "uas" "fusb302" ]; - networking.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux"; } diff --git a/hosts/tower/hardware/default.nix b/hosts/tower/hardware/default.nix index 93b03c9c..52647895 100644 --- a/hosts/tower/hardware/default.nix +++ b/hosts/tower/hardware/default.nix @@ -7,7 +7,6 @@ boot.initrd.kernelModules = [ "dm-snapshot" ]; boot.kernelModules = [ "kvm-amd" ]; - networking.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }