nix-conf/system/boot.nix

11 lines
261 B
Nix
Raw Permalink Normal View History

2024-12-25 17:51:47 -05:00
{lib, ...}: {
boot.loader = lib.mkDefault {
2024-10-18 23:42:11 -04:00
grub.enable = true;
grub.device = "nodev";
grub.efiSupport = true;
2025-01-19 01:17:33 -05:00
grub.useOSProber = false;
2024-10-18 23:42:11 -04:00
efi.canTouchEfiVariables = true;
};
environment.etc.issue.text = "\nNixOS \\r (\\m) - \\l\n\n";
}