mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 18:23:54 -05:00
23 lines
440 B
Nix
23 lines
440 B
Nix
{
|
|
config,
|
|
inputs,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.nixhw.nixosModules.common-amd-cpu
|
|
inputs.nixhw.nixosModules.common-amd-gpu
|
|
inputs.nixhw.nixosModules.common-bluetooth
|
|
inputs.nixhw.nixosModules.common-ssd
|
|
];
|
|
|
|
boot = {
|
|
initrd.availableKernelModules = ["nvme" "sd_mod" "usb_storage" "usbhid" "xhci_pci"];
|
|
|
|
kernelPackages = pkgs.linuxPackages_latest;
|
|
};
|
|
|
|
hardware.enableAllFirmware = true;
|
|
}
|