dotfiles/common/systemModules/boot.nix
2024-11-26 17:01:58 -05:00

13 lines
223 B
Nix

{ pkgs, ... }: {
boot = {
loader = {
grub = {
enable = true;
device = "nodev";
efiSupport = true;
useOSProber = true;
efiInstallAsRemovable = true;
};
};
};
}