dotfiles/os/boot/default.nix

18 lines
253 B
Nix
Raw Normal View History

2024-12-15 00:29:51 +01:00
{
pkgs,
lib,
config,
...
}:
2024-02-17 18:39:09 +01:00
{
boot.loader = {
grub = {
enable = true;
efiSupport = true;
2024-02-17 23:35:53 +01:00
efiInstallAsRemovable = !config.boot.loader.efi.canTouchEfiVariables;
2024-02-17 18:39:09 +01:00
device = "nodev"; # Don't install on MBR
};
};
}