From 5ba1050e63aebe7cb74d8f7068112d4ee45caeda Mon Sep 17 00:00:00 2001 From: Geir Okkenhaug Jerstad Date: Thu, 14 Nov 2024 09:34:10 +0100 Subject: [PATCH] added plymouth config --- workstation/configuration.nix | 1 + workstation/plymouth.nix | 27 +++++++++++++++++++++++++++ workstation/plymouth.nix~ | 13 +++++++++++++ 3 files changed, 41 insertions(+) create mode 100644 workstation/plymouth.nix create mode 100644 workstation/plymouth.nix~ diff --git a/workstation/configuration.nix b/workstation/configuration.nix index 5b7d01a..100c07e 100644 --- a/workstation/configuration.nix +++ b/workstation/configuration.nix @@ -15,6 +15,7 @@ ./zsh.nix ./incus.nix ./libvirt.nix + ./plymouth.nix ]; # Kernel diff --git a/workstation/plymouth.nix b/workstation/plymouth.nix new file mode 100644 index 0000000..747813f --- /dev/null +++ b/workstation/plymouth.nix @@ -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; + }; +} diff --git a/workstation/plymouth.nix~ b/workstation/plymouth.nix~ new file mode 100644 index 0000000..cda3eba --- /dev/null +++ b/workstation/plymouth.nix~ @@ -0,0 +1,13 @@ +{ pkgs, ...}: +{ + boot = { + plymouth = { + enable = true; + theme = "rings"; + themePackages = with pkgs; [ + (adil1090x-plymouth-themes.overrride { + selected_themes = [ "rings" ]; + }) + + ]; +}