From 9795d54dd4fd629c3799427c25cec98713c24141 Mon Sep 17 00:00:00 2001 From: kenji Date: Tue, 23 Dec 2025 23:43:52 +0000 Subject: [PATCH] makes decent LUKS lock screen --- system/boot.nix | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/system/boot.nix b/system/boot.nix index e1d534e..626f98f 100644 --- a/system/boot.nix +++ b/system/boot.nix @@ -1,5 +1,15 @@ {pkgs, ...}: { boot = { + consoleLogLevel = 3; + initrd.verbose = false; + kernelParams = [ + "quiet" + "splash" + "intremap=on" + "boot.shell_on_fail" + "udev.log_priority=3" + "rd.systemd.show_status=auto" + ]; loader = { systemd-boot = { enable = true; @@ -9,15 +19,18 @@ canTouchEfiVariables = true; efiSysMountPoint = "/boot"; }; - - # grub = { - # enable = false; - # device = "nodev"; - # }; }; - initrd = { systemd.enable = true; }; + plymouth = { + enable = true; + # themePackages = [ + # (pkgs.adi1090x-plymouth-themes.override { + # selected_themes = ["circle_hud"]; + # }) + # ]; + # theme = "circle_hud"; + }; }; }