nix-config/hosts/common/optional/systemd-boot.nix

10 lines
171 B
Nix

{
boot.loader = {
systemd-boot = {
enable = true;
consoleMode = "max";
configurationLimit = 42;
};
efi.canTouchEfiVariables = true;
};
}