Plymouth Bootscreen aktiviert

This commit is contained in:
2026-06-12 09:45:16 +02:00
parent 802a20ee75
commit 27d757d81d
+22
View File
@@ -14,6 +14,28 @@
# ./modules/desktop/niri.nix # ./modules/desktop/niri.nix
]; ];
boot = {
# Enable Plymouth boot splash
plymouth = {
enable = true;
# Optional: Choose a theme. "breeze" is standard, or use "spinner", "fade-in", etc.
theme = "breeze";
};
# Enable Plymouth in initrd for a graphical LUKS password prompt
initrd.systemd.enable = true;
# Optional: Suppress kernel messages to make the boot look cleaner
kernelParams = [
"quiet"
"splash"
"boot.shell_on_fail"
"loglevel=3"
"rd.systemd.show_status=false"
"rd.udev.log_level=3"
"udev.log_priority=3"
];
};
# Use the systemd-boot EFI boot loader. # Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;