aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
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
+ ];
};
};
}