nixos-config/modules/common/boot.nix

14 lines
No EOL
209 B
Nix
Executable file

{ config, ... }:
{
boot = {
loader = {
systemd-boot = {
enable = true;
editor = false;
configurationLimit = 5;
};
efi.canTouchEfiVariables = true;
};
};
}