From d5c7146bfc536adb1327cd7eca421354f128a9a8 Mon Sep 17 00:00:00 2001 From: yunfachi Date: Thu, 1 Aug 2024 10:16:52 +0300 Subject: [PATCH] feat(boot): add plymouth --- modules/config/boot.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/config/boot.nix b/modules/config/boot.nix index cb1d8f6..ef3cb34 100644 --- a/modules/config/boot.nix +++ b/modules/config/boot.nix @@ -1,6 +1,7 @@ { module-functions, lib, + pkgs, ... }: module-functions.module null "boot" (cfg: { @@ -14,5 +15,12 @@ module-functions.module null "boot" (cfg: { "udev.log_priority=3" ]; consoleLogLevel = lib.mkIf cfg.silent 0; + + plymouth = { + enable = true; + + themePackages = with pkgs; [adi1090x-plymouth-themes]; + theme = "cubes"; + }; }; })