mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 16:23:55 -05:00
Aly Raffauf
b3e3fda67e
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / adjustor-build (push) Waiting to run
nix-build / clean-install-build (push) Waiting to run
nix-build / hhd-ui-build (push) Waiting to run
nix-build / rofi-bluetooth-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / pacifidlog-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
* hwModuled/amd/cpu: switch to zenpower * hwModules/framework/13/amd-7000: improve format * hwModules: add common and common-gaming modules * hwModules/legion/go: killuserProcesses on logout
33 lines
747 B
Nix
33 lines
747 B
Nix
{self, ...}: {
|
|
imports = [
|
|
../common.nix
|
|
self.nixosModules.hw-common
|
|
self.nixosModules.hw-common-bluetooth
|
|
self.nixosModules.hw-common-intel-cpu
|
|
self.nixosModules.hw-common-intel-gpu
|
|
self.nixosModules.hw-common-laptop
|
|
self.nixosModules.hw-common-laptop-intel-cpu
|
|
self.nixosModules.hw-common-ssd
|
|
];
|
|
|
|
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"
|
|
];
|
|
};
|
|
|
|
powerManagement.cpuFreqGovernor = "ondemand";
|
|
services.fwupd.enable = true;
|
|
}
|