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
|
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 = {
|
|
|
|
initrd.availableKernelModules = ["nvme" "sd_mod" "thunderbolt" "usb_storage" "xhci_pci"];
|
|
|
|
kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
|
|
|
|
};
|
2024-10-13 18:41:35 -04:00
|
|
|
|
|
|
|
hardware.enableAllFirmware = true;
|
2024-09-27 10:21:18 -04:00
|
|
|
}
|