16 lines
223 B
Nix
16 lines
223 B
Nix
|
{
|
||
|
boot = {
|
||
|
loader = {
|
||
|
systemd-boot = {
|
||
|
enable = true;
|
||
|
consoleMode = "max";
|
||
|
};
|
||
|
|
||
|
efi = {
|
||
|
canTouchEfiVariables = true;
|
||
|
efiSysMountPoint = "/boot";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|