nix-conf/system/common/boot.nix
2024-10-24 02:01:46 -05:00

13 lines
244 B
Nix

{ ... }:
{
boot.loader = {
grub.enable = true;
grub.device = "nodev";
grub.efiSupport = true;
grub.useOSProber = true;
efi.canTouchEfiVariables = true;
};
environment.etc.issue.text = "\nNixOS \\r (\\m) - \\l\n\n";
}