Use specific Linux kernels

This commit is contained in:
Tibo De Peuter 2023-11-14 21:17:35 +01:00
parent 69ff446a04
commit be4fc18caa
2 changed files with 12 additions and 5 deletions

View file

@ -35,11 +35,15 @@
virtualisation.virtualbox.enable = true;
};
boot.loader = {
systemd-boot.enable = true;
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi";
boot = {
kernelPackages = pkgs.linuxPackages_hardened;
loader = {
systemd-boot.enable = true;
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi";
};
};
};