dotfiles/os/boot/default.nix

14 lines
207 B
Nix
Raw Normal View History

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