aboutsummaryrefslogtreecommitdiffstats
path: root/modules/by-name/pl
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--modules/by-name/pl/plymouth/module.nix (renamed from modules/home.legacy/conf/beets/plugins/mbsubmit/default.nix)23
1 files changed, 19 insertions, 4 deletions
diff --git a/modules/home.legacy/conf/beets/plugins/mbsubmit/default.nix b/modules/by-name/pl/plymouth/module.nix
index bdcb3721..5e4735b9 100644
--- a/modules/home.legacy/conf/beets/plugins/mbsubmit/default.nix
+++ b/modules/by-name/pl/plymouth/module.nix
@@ -8,11 +8,26 @@
# You should have received a copy of the License along with this program.
# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
{
- lib,
+ config,
pkgs,
+ lib,
+ libraries,
...
-}: {
- programs.beets.settings.mbsubmit = {
- picard_path = lib.getExe pkgs.picard;
+}: let
+ cfg = config.soispha.services.plymouth;
+in {
+ options.soispha.services.plymouth = {
+ enable = libraries.base.options.mkEnable "plymouth";
+ };
+
+ config = lib.mkIf cfg.enable {
+ boot.plymouth = {
+ enable = true;
+
+ theme = "rings";
+ themePackages = [
+ pkgs.adi1090x-plymouth-themes
+ ];
+ };
};
}