Files
nixos-dotfiles/modules/grub/default.nix
2025-07-22 02:30:15 +02:00

17 lines
306 B
Nix

{ ... }:
{
## Configure boot loader
boot.loader = {
# Use grub without NVRAM
grub = {
enable = true;
efiSupport = true;
device = "nodev";
efiInstallAsRemovable = true;
useOSProber = true;
};
# Do not edit NVRAM
efi.canTouchEfiVariables = false;
};
}