added plymouth config
This commit is contained in:
parent
57e90d0515
commit
5ba1050e63
|
@ -15,6 +15,7 @@
|
||||||
./zsh.nix
|
./zsh.nix
|
||||||
./incus.nix
|
./incus.nix
|
||||||
./libvirt.nix
|
./libvirt.nix
|
||||||
|
./plymouth.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Kernel
|
# Kernel
|
||||||
|
|
27
workstation/plymouth.nix
Normal file
27
workstation/plymouth.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{ pkgs, ...}:
|
||||||
|
{
|
||||||
|
boot = {
|
||||||
|
plymouth = {
|
||||||
|
enable = true;
|
||||||
|
theme = "rings";
|
||||||
|
themePackages = with pkgs; [
|
||||||
|
(adil1090x-plymouth-themes.overrride {
|
||||||
|
selected_themes = [ "target" ];
|
||||||
|
})
|
||||||
|
];
|
||||||
|
};
|
||||||
|
# Enable "Silent Boot"
|
||||||
|
consoleLogLevel = 0;
|
||||||
|
initrd.verbose = false;
|
||||||
|
kernelParams = [
|
||||||
|
"quiet"
|
||||||
|
"splash"
|
||||||
|
"boot.shell_on_fail"
|
||||||
|
"loglevel=3"
|
||||||
|
"rd.systemd.show_status=false"
|
||||||
|
"rd.udev.log_level=3"
|
||||||
|
"udev.log_priority=3"
|
||||||
|
];
|
||||||
|
loader.timeout = 0;
|
||||||
|
};
|
||||||
|
}
|
13
workstation/plymouth.nix~
Normal file
13
workstation/plymouth.nix~
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
{ pkgs, ...}:
|
||||||
|
{
|
||||||
|
boot = {
|
||||||
|
plymouth = {
|
||||||
|
enable = true;
|
||||||
|
theme = "rings";
|
||||||
|
themePackages = with pkgs; [
|
||||||
|
(adil1090x-plymouth-themes.overrride {
|
||||||
|
selected_themes = [ "rings" ];
|
||||||
|
})
|
||||||
|
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue