From e45ffe2fe3685a237e6208e834a13f6f2b84d016 Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Sun, 28 Dec 2025 15:35:08 +0100 Subject: [PATCH] machine/workman: fix boot screen --- machines/workman/boot.nix | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/machines/workman/boot.nix b/machines/workman/boot.nix index c363125..b97e5f2 100644 --- a/machines/workman/boot.nix +++ b/machines/workman/boot.nix @@ -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";