about summary refs log tree commit diff stats
path: root/modules
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-03-13 01:58:56 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-03-13 01:58:56 +0100
commit32606f06dd38c4964936fc4362ec3c502c90305f (patch)
tree6de72a85411ca253141c95dd1bade2cc3ce9c493 /modules
parentmodules/plymouth: Init (diff)
downloadnixos-config-32606f06dd38c4964936fc4362ec3c502c90305f.zip
modules/plymouth: Set a better theme
Diffstat (limited to 'modules')
-rw-r--r--modules/by-name/pl/plymouth/module.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/by-name/pl/plymouth/module.nix b/modules/by-name/pl/plymouth/module.nix
index 58232a81..edfe7547 100644
--- a/modules/by-name/pl/plymouth/module.nix
+++ b/modules/by-name/pl/plymouth/module.nix
@@ -9,6 +9,7 @@
 # If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
 {
   config,
+  pkgs,
   lib,
   libraries,
   ...
@@ -22,7 +23,11 @@ in {
   config = lib.mkIf cfg.enable {
     boot.plymouth = {
       enable = true;
-      theme = "bgrt";
+
+      theme = "lone";
+      themePackages = [
+        pkgs.adi1090x-plymouth-themes
+      ];
     };
   };
 }