nixos-configuration/nixosModules/systemd-boot.nix
2025-09-14 14:01:55 +02:00

11 lines
221 B
Nix

{
boot.loader = {
timeout = 3;
efi.canTouchEfiVariables = true;
systemd-boot = {
enable = true;
editor = false; # do not allow changing kernel parameters
consoleMode = "max";
};
};
}