europa: dedupe some nixos-hw stuff

This commit is contained in:
Aaron Bieber 2023-12-16 14:43:54 -07:00
parent 283e5d0145
commit 3940598587
No known key found for this signature in database

View File

@ -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;
};
}