feat(plymouth): Remove Plymouth
This commit is contained in:
parent
0345af8328
commit
f9fc888913
2 changed files with 0 additions and 20 deletions
|
@ -2,6 +2,5 @@
|
||||||
./console.nix
|
./console.nix
|
||||||
./globals.nix
|
./globals.nix
|
||||||
./grub.nix
|
./grub.nix
|
||||||
./plymouth.nix
|
|
||||||
./sddm.nix
|
./sddm.nix
|
||||||
]
|
]
|
||||||
|
|
|
@ -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; }) ];
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue