21 lines
332 B
Nix
21 lines
332 B
Nix
|
{ modulesPath, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
(modulesPath + "/profiles/qemu-guest.nix")
|
||
|
];
|
||
|
|
||
|
boot = {
|
||
|
loader = {
|
||
|
efi.canTouchEfiVariables = true;
|
||
|
systemd-boot.enable = true;
|
||
|
};
|
||
|
initrd.availableKernelModules = [
|
||
|
"ahci"
|
||
|
"xhci_pci"
|
||
|
"virtio_pci"
|
||
|
"sr_mod"
|
||
|
"virtio_blk"
|
||
|
];
|
||
|
};
|
||
|
}
|