feat(plymouth): Remove Plymouth

This commit is contained in:
punkfairie 2024-10-20 16:43:45 -07:00
parent 0345af8328
commit f9fc888913
Signed by: punkfairie
GPG key ID: 01823C057725C266
2 changed files with 0 additions and 20 deletions

View file

@ -2,6 +2,5 @@
./console.nix
./globals.nix
./grub.nix
./plymouth.nix
./sddm.nix
]

View file

@ -1,19 +0,0 @@
{
config,
pkgs,
lib,
...
}:
let
inherit (lib) ctp mkIf;
cfg = config.boot.plymouth.catppuccin;
enable = cfg.enable && config.boot.plymouth.enable;
in
{
options.boot.plymouth.catppuccin = ctp.mkCatppuccinOpt { name = "plymouth"; };
config.boot.plymouth = mkIf enable {
theme = "catppuccin-${cfg.flavor}";
themePackages = [ (pkgs.catppuccin-plymouth.override { variant = cfg.flavor; }) ];
};
}