added plymouth config

This commit is contained in:
Geir Okkenhaug Jerstad 2024-11-14 09:34:10 +01:00
parent 57e90d0515
commit 5ba1050e63
3 changed files with 41 additions and 0 deletions

View file

@ -15,6 +15,7 @@
./zsh.nix
./incus.nix
./libvirt.nix
./plymouth.nix
];
# Kernel

27
workstation/plymouth.nix Normal file
View 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
View file

@ -0,0 +1,13 @@
{ pkgs, ...}:
{
boot = {
plymouth = {
enable = true;
theme = "rings";
themePackages = with pkgs; [
(adil1090x-plymouth-themes.overrride {
selected_themes = [ "rings" ];
})
];
}