nix-conf/system/common/boot.nix

13 lines
244 B
Nix
Raw Normal View History

2024-10-18 23:42:11 -04:00
{ ... }:
{
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";
}