11 lines
250 B
Nix
11 lines
250 B
Nix
|
|
{ ... }: {
|
||
|
|
boot = {
|
||
|
|
loader = {
|
||
|
|
efi.canTouchEfiVariables = true;
|
||
|
|
systemd-boot.enable = true;
|
||
|
|
};
|
||
|
|
initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
||
|
|
kernelModules = [ "kvm-amd" ];
|
||
|
|
};
|
||
|
|
}
|