nixcfg/nixosModules/systemConfig/plymouth/default.nix

21 lines
357 B
Nix
Raw Normal View History

2024-04-07 22:16:33 -04:00
{
pkgs,
lib,
config,
...
}: {
options = {
2024-04-07 22:16:33 -04:00
systemConfig.plymouth.enable =
lib.mkEnableOption
2024-03-28 16:40:23 -04:00
"Enables plymouth boot screen with reduced text verbosity.";
};
config = lib.mkIf config.systemConfig.plymouth.enable {
boot = {
consoleLogLevel = 0;
initrd.verbose = false;
plymouth.enable = true;
};
};
}