nixcfg/nixosModules/systemConfig/plymouth/default.nix

16 lines
344 B
Nix
Raw Normal View History

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