15 lines
341 B
Nix
15 lines
341 B
Nix
|
|
{ ... }: {
|
||
|
|
boot = {
|
||
|
|
loader = {
|
||
|
|
efi.canTouchEfiVariables = true;
|
||
|
|
systemd-boot.enable = true;
|
||
|
|
};
|
||
|
|
initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" ];
|
||
|
|
initrd.kernelModules = [ "nvme" ];
|
||
|
|
kernel.sysctl = {
|
||
|
|
"kernel.core_pattern" = "|/bin/false";
|
||
|
|
"kernel.sysrq" = 1;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|