17 lines
251 B
Nix
17 lines
251 B
Nix
{
|
|
boot = {
|
|
loader = {
|
|
systemd-boot = {
|
|
enable = true;
|
|
consoleMode = "max";
|
|
};
|
|
|
|
efi = {
|
|
canTouchEfiVariables = true;
|
|
efiSysMountPoint = "/boot";
|
|
};
|
|
};
|
|
tmp.cleanOnBoot = true;
|
|
};
|
|
}
|