nixcfg/hosts/rustboro/hardware.nix

47 lines
727 B
Nix
Raw Normal View History

2024-02-29 17:06:55 -05:00
{
2024-04-07 22:16:33 -04:00
config,
inputs,
2024-04-07 22:16:33 -04:00
lib,
pkgs,
2024-04-07 22:16:33 -04:00
...
}: {
boot = {
extraModprobeConfig = ''
options bbswitch use_acpi_to_detect_card_state=1
options thinkpad_acpi force_load=1 fan_control=1
'';
initrd.availableKernelModules = [
"ahci"
"ehci_pci"
"rtsx_pci_sdmmc"
"sd_mod"
"sr_mod"
"usb_storage"
"xhci_pci"
];
2024-06-21 16:24:38 -04:00
};
2024-04-05 23:12:46 -04:00
hardware = {
enableAllFirmware = true;
trackpoint = {
enable = true;
emulateWheel = true;
};
2024-04-05 23:12:46 -04:00
};
2024-07-01 00:53:22 -04:00
powerManagement.cpuFreqGovernor = "ondemand";
services.fwupd.enable = true;
2024-04-05 23:12:46 -04:00
ar.hardware = {
enable = true;
cpu.intel = true;
gpu.intel = true;
laptop = true;
ssd = true;
sound = true;
};
2024-02-29 17:06:55 -05:00
}