mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 17:43:55 -05:00
21 lines
421 B
Nix
21 lines
421 B
Nix
{
|
|
config,
|
|
inputs,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.ar.base.plymouth.enable {
|
|
boot = {
|
|
consoleLogLevel = 0;
|
|
initrd.verbose = false;
|
|
plymouth = {
|
|
enable = true;
|
|
themePackages = [pkgs.catppuccin-plymouth];
|
|
theme = "catppuccin-frappe";
|
|
font = "${pkgs.nerdfonts}/share/fonts/truetype/NerdFonts/NotoSansNerdFont-Regular.ttf";
|
|
};
|
|
};
|
|
};
|
|
}
|