nixos-configs/nixosModules/systemd-boot.nix

12 lines
221 B
Nix
Raw Normal View History

2025-09-14 14:01:42 +02:00
{
boot.loader = {
timeout = 3;
efi.canTouchEfiVariables = true;
systemd-boot = {
enable = true;
editor = false; # do not allow changing kernel parameters
consoleMode = "max";
};
};
}