2024-06-14 14:05:59 -04:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
inputs,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: {
|
2024-07-06 18:05:20 -04:00
|
|
|
imports = [
|
|
|
|
inputs.nixhw.nixosModules.common-amd-cpu
|
|
|
|
inputs.nixhw.nixosModules.common-amd-gpu
|
|
|
|
inputs.nixhw.nixosModules.common-bluetooth
|
|
|
|
inputs.nixhw.nixosModules.common-ssd
|
|
|
|
];
|
|
|
|
|
2024-06-14 14:05:59 -04:00
|
|
|
boot = {
|
2024-06-26 22:13:02 -04:00
|
|
|
initrd.availableKernelModules = ["nvme" "sd_mod" "usb_storage" "usbhid" "xhci_pci"];
|
2024-06-22 12:10:36 -04:00
|
|
|
|
|
|
|
kernelPackages = pkgs.linuxPackages_latest;
|
2024-06-14 14:05:59 -04:00
|
|
|
};
|
|
|
|
|
2024-06-26 22:13:02 -04:00
|
|
|
hardware.enableAllFirmware = true;
|
2024-06-14 14:05:59 -04:00
|
|
|
}
|