nixcfg/nixosModules/base/plymouth/default.nix

19 lines
332 B
Nix
Raw Normal View History

2024-04-07 22:16:33 -04:00
{
config,
inputs,
lib,
pkgs,
2024-04-07 22:16:33 -04:00
...
}: {
config = lib.mkIf config.ar.base.plymouth.enable {
boot = {
consoleLogLevel = 0;
initrd.verbose = false;
plymouth = {
enable = true;
font = "${pkgs.nerdfonts}/share/fonts/truetype/NerdFonts/NotoSansNerdFont-Regular.ttf";
};
};
};
}