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 = {
loader = {
timeout = 1;
timeout = 0;
systemd-boot = {
enable = true;
configurationLimit = 10;
consoleMode = "keep";
consoleMode = "max"; # needed for plymouth
editor = 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 = {
enable = true;
theme = "framework";