24 lines
387 B
Nix
24 lines
387 B
Nix
{ lib, config, ... }:
|
|
with lib;
|
|
let
|
|
cfg = config.os.boot.plymouth;
|
|
in
|
|
{
|
|
options.os.boot.plymouth = {
|
|
enable = mkEnableOption "Boot plymouth service";
|
|
};
|
|
config = mkIf cfg.enable {
|
|
|
|
boot.consoleLogLevel = 3;
|
|
boot.initrd.verbose = false;
|
|
boot.kernelParams = [
|
|
"quiet"
|
|
"splash"
|
|
"boot.shell_on_fail"
|
|
];
|
|
|
|
boot.plymouth.enable = true;
|
|
|
|
};
|
|
}
|