This repository has been archived on 2025-11-26. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
nixos-config/modules/core/bootloader.nix

14 lines
199 B
Nix

{
pkgs,
lib,
...
}: {
boot.loader = {
grub = {
efiSupport = true;
device = "nodev";
useOSProber = true;
};
efi.canTouchEfiVariables = lib.mkDefault true;
};
}