plymouth: init
This commit is contained in:
parent
8b1c4cc9e6
commit
b588db4e52
2 changed files with 21 additions and 0 deletions
|
|
@ -26,6 +26,7 @@
|
||||||
./modules/desktop/de/hyprland.nix
|
./modules/desktop/de/hyprland.nix
|
||||||
./modules/desktop/japanese-input.nix
|
./modules/desktop/japanese-input.nix
|
||||||
./modules/desktop/login/sddm.nix
|
./modules/desktop/login/sddm.nix
|
||||||
|
./modules/desktop/login/plymouth.nix
|
||||||
./modules/browser/firefox.nix
|
./modules/browser/firefox.nix
|
||||||
./modules/browser/chromium.nix
|
./modules/browser/chromium.nix
|
||||||
./modules/applications/default.nix
|
./modules/applications/default.nix
|
||||||
|
|
|
||||||
20
modules/desktop/login/plymouth.nix
Normal file
20
modules/desktop/login/plymouth.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
boot = {
|
||||||
|
plymouth = {
|
||||||
|
enable = true;
|
||||||
|
theme = "bgrt";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Enable "Silent boot"
|
||||||
|
consoleLogLevel = 3;
|
||||||
|
initrd.verbose = false;
|
||||||
|
kernelParams = [
|
||||||
|
"quiet"
|
||||||
|
"splash"
|
||||||
|
"boot.shell_on_fail"
|
||||||
|
"udev.log_priority=3"
|
||||||
|
"rd.systemd.show_status=auto"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue