nixos/modules/core/boot.nix

15 lines
230 B
Nix

{
config,
...
}:
{
boot = {
loader.systemd-boot = {
enable = true;
configurationLimit = 10;
consoleMode = config.system.systemdBootConsoleMode;
};
loader.efi.canTouchEfiVariables = true;
};
}