Files
nicksOs/modules/system/boot.nix
T
2026-07-26 12:26:38 +02:00

7 lines
158 B
Nix

{pkgs, ...}: {
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.kernelPackages = pkgs.linuxPackages_latest;
}