2024-04-07 22:16:33 -04:00
|
|
|
{
|
|
|
|
config,
|
2024-06-11 21:16:05 -04:00
|
|
|
inputs,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
2024-04-07 22:16:33 -04:00
|
|
|
...
|
|
|
|
}: {
|
2024-06-26 22:13:02 -04:00
|
|
|
config = lib.mkIf config.ar.base.plymouth.enable {
|
2024-03-28 16:13:46 -04:00
|
|
|
boot = {
|
|
|
|
consoleLogLevel = 0;
|
|
|
|
initrd.verbose = false;
|
2024-04-23 22:40:10 -04:00
|
|
|
plymouth = {
|
|
|
|
enable = true;
|
2024-06-04 01:18:46 -04:00
|
|
|
themePackages = [pkgs.catppuccin-plymouth];
|
2024-04-23 22:40:10 -04:00
|
|
|
theme = "catppuccin-frappe";
|
2024-06-04 01:18:46 -04:00
|
|
|
font = "${pkgs.nerdfonts}/share/fonts/truetype/NerdFonts/NotoSansNerdFont-Regular.ttf";
|
2024-04-23 22:40:10 -04:00
|
|
|
};
|
2024-03-28 16:13:46 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|