mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 22:43:55 -05:00
22 lines
443 B
Nix
22 lines
443 B
Nix
|
{
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
imports = [
|
||
|
../../../common/bluetooth
|
||
|
../../../common/cpu/intel
|
||
|
../../../common/gpu/intel
|
||
|
../../../common/laptop
|
||
|
../../../common/laptop/intel-cpu.nix
|
||
|
../../../common/ssd
|
||
|
../../common.nix
|
||
|
../common.nix
|
||
|
];
|
||
|
|
||
|
boot = {
|
||
|
initrd.availableKernelModules = ["nvme" "sd_mod" "thunderbolt" "usb_storage" "xhci_pci"];
|
||
|
kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
|
||
|
};
|
||
|
}
|