From 93147fade05bf54a11f4cb6a2f18054e1253ce2a Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Mon, 30 Dec 2024 10:56:25 -0500 Subject: [PATCH] plymouth --- modules/ricing/plymouth.nix | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/modules/ricing/plymouth.nix b/modules/ricing/plymouth.nix index 156a30f..d6d306e 100644 --- a/modules/ricing/plymouth.nix +++ b/modules/ricing/plymouth.nix @@ -6,9 +6,8 @@ }: let rices = { basic = { + enable = true; theme = "deus_ex"; - logo = null; - font = null; extraConfig = ""; }; }; @@ -18,11 +17,5 @@ in rices.${lib.head enabledSet}; in { - boot.plymouth = { - enable = true; - theme = rice.theme; - logo = rice.logo; - font = rice.font; - extraConfig = rice.extraConfig; - }; + boot.plymouth = rice; }