13 lines
244 B
Nix
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";
|
||
|
|
}
|