dotfiles/common/systemModules/boot.nix

14 lines
223 B
Nix
Raw Normal View History

2024-10-02 17:19:34 -04:00
{ pkgs, ... }: {
boot = {
loader = {
grub = {
enable = true;
device = "nodev";
efiSupport = true;
useOSProber = true;
efiInstallAsRemovable = true;
};
};
};
}