diff --git a/hosts/europa/hardware-configuration.nix b/hosts/europa/hardware-configuration.nix index 59bd352..5f6c685 100644 --- a/hosts/europa/hardware-configuration.nix +++ b/hosts/europa/hardware-configuration.nix @@ -43,6 +43,9 @@ bluetooth.enable = true; cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; + sensor = { + iio.enable = true; + }; rtl-sdr.enable = true; }; } diff --git a/hosts/stan/hardware-configuration.nix b/hosts/stan/hardware-configuration.nix index e85ed43..27e7e64 100644 --- a/hosts/stan/hardware-configuration.nix +++ b/hosts/stan/hardware-configuration.nix @@ -53,7 +53,14 @@ networking.useDHCP = lib.mkDefault true; powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; - hardware.cpu.intel.updateMicrocode = - lib.mkDefault config.hardware.enableRedistributableFirmware; - hardware.bluetooth.enable = true; + hardware = { + acpilight.enable = true; + bluetooth.enable = true; + cpu.intel.updateMicrocode = + lib.mkDefault config.hardware.enableRedistributableFirmware; + sensor = { + iio.enable = true; + }; + rtl-sdr.enable = true; + }; }