24 lines
530 B
Nix
24 lines
530 B
Nix
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||
# and may be overwritten by future invocations. Please make changes
|
||
# to /etc/nixos/configuration.nix instead.
|
||
_: {
|
||
boot.loader.grub = {
|
||
efiSupport = true;
|
||
device = "/dev/vda"; # or "nodev" for efi only
|
||
};
|
||
|
||
boot.kernelParams = [
|
||
"console=ttyS0"
|
||
"earlyprintk=ttyS0"
|
||
"rootdelay=300"
|
||
"panic=1"
|
||
"boot.panic_on_fail"
|
||
];
|
||
boot.initrd.kernelModules = [
|
||
"hv_vmbus"
|
||
"hv_netvsc"
|
||
"hv_utils"
|
||
"hv_storvsc"
|
||
];
|
||
}
|