CrOS/modules/hardware/boot.nix
TheWanderingCrow 663aeffed8 ricing
2024-12-29 20:16:00 -05:00

27 lines
610 B
Nix

{
config = {
boot = {
loader = {
systemd-boot.enable = true;
efi = {
canTouchEfiVariables = true;
};
# Can press any key to get the generation list, otherwise just load the first one cause it's probably what you want
timeout = 0;
};
# Silent Booting
consoleLogLevel = 0;
initrd.verbose = false;
kernelParams = [
"quiet"
"splash"
"boot.shell_on_fail"
"loglevel=3"
"rd.systemd.show_status=false"
"rd.udev.log_level=3"
"udev.log_priority=3"
];
};
};
}