From 3940598587c31d288da818542b1db5df692b5e14 Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Sat, 16 Dec 2023 14:43:54 -0700 Subject: [PATCH] europa: dedupe some nixos-hw stuff --- hosts/europa/hardware-configuration.nix | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/hosts/europa/hardware-configuration.nix b/hosts/europa/hardware-configuration.nix index 5f6c685..fbed313 100644 --- a/hosts/europa/hardware-configuration.nix +++ b/hosts/europa/hardware-configuration.nix @@ -1,5 +1,4 @@ -{ config -, lib +{ lib , modulesPath , ... }: { @@ -39,13 +38,13 @@ powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; hardware = { - acpilight.enable = true; + #acpilight.enable = true; bluetooth.enable = true; - cpu.intel.updateMicrocode = - lib.mkDefault config.hardware.enableRedistributableFirmware; - sensor = { - iio.enable = true; - }; + #cpu.intel.updateMicrocode = + # lib.mkDefault config.hardware.enableRedistributableFirmware; + #sensor = { + # iio.enable = true; + #}; rtl-sdr.enable = true; }; }