quiet-boot: graphical LUKS prompt, catppuccin theme

This commit is contained in:
Vinzenz Schroeter 2025-11-15 11:08:03 +01:00
parent 67f2675c7d
commit 02c5171e04
2 changed files with 17 additions and 2 deletions

View file

@ -1,11 +1,25 @@
{ pkgs, ... }:
{
boot = {
kernelParams = [
"quiet"
"udev.log_level=3"
"udev.log_priority=3"
"rd.systemd.show_status=auto"
];
consoleLogLevel = 0;
initrd.verbose = false;
plymouth.enable = true;
initrd = {
verbose = false;
systemd.enable = true; # required fpr graphical LUKS prompt
};
plymouth = {
enable = true;
theme = "catppuccin-mocha";
themePackages = [
(pkgs.catppuccin-plymouth.override {
variant = "mocha";
})
];
};
};
}