nixos/modules/core/boot.nix

14 lines
199 B
Nix

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