Files

18 lines
317 B
Nix
Raw Permalink Normal View History

2025-09-13 02:38:36 -04:00
{
2025-10-14 14:49:39 -04:00
config,
2025-09-13 02:38:36 -04:00
...
}:
{
boot = {
2025-10-14 14:49:39 -04:00
extraModulePackages = with config.boot.kernelPackages; [ virtualbox ];
2025-09-13 02:38:36 -04:00
loader = {
systemd-boot = {
enable = true;
configurationLimit = 10;
};
efi.canTouchEfiVariables = true;
};
2025-10-14 14:49:39 -04:00
kernelParams = [ "kvm.enable_virt_at_load=0" ];
2025-09-13 02:38:36 -04:00
};
}