2024-09-27 10:21:18 -04:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
pkgs,
|
2024-10-14 19:13:27 -04:00
|
|
|
self,
|
2024-09-27 10:21:18 -04:00
|
|
|
...
|
|
|
|
}: {
|
|
|
|
imports = [
|
|
|
|
../../common.nix
|
|
|
|
../common.nix
|
2024-10-14 19:13:27 -04:00
|
|
|
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
|
2024-09-27 10:21:18 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
boot = {
|
|
|
|
blacklistedKernelModules = ["cros-usbpd-charger"];
|
|
|
|
initrd.availableKernelModules = ["xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod"];
|
|
|
|
kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
|
|
|
|
|
|
|
|
kernelParams = [
|
|
|
|
"nvme.noacpi=1" # https://community.frame.work/t/linux-battery-life-tuning/6665/156
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
hardware.acpilight.enable = true;
|
|
|
|
}
|