nixcfg/nixosModules/systemConfig/plymouth/default.nix

15 lines
338 B
Nix
Raw Normal View History

{ pkgs, lib, config, ... }: {
options = {
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;
};
};
}