machine/workman: fix boot screen
Some checks are pending
/ Build Nix targets (push) Waiting to run

This commit is contained in:
Felix Buehler 2025-12-28 15:35:08 +01:00
parent 4938bed579
commit e45ffe2fe3

View file

@ -5,15 +5,28 @@
{ {
boot = { boot = {
loader = { loader = {
timeout = 1; timeout = 0;
systemd-boot = { systemd-boot = {
enable = true; enable = true;
configurationLimit = 10; configurationLimit = 10;
consoleMode = "keep"; consoleMode = "max"; # needed for plymouth
editor = true; editor = true;
}; };
efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
}; };
initrd = {
systemd.enable = true; # for a nice password prompt
verbose = false;
};
# Enable "Silent boot"
consoleLogLevel = 3;
kernelParams = [
"quiet"
"splash"
"boot.shell_on_fail"
"udev.log_priority=3"
"rd.systemd.show_status=auto"
];
plymouth = { plymouth = {
enable = true; enable = true;
theme = "framework"; theme = "framework";