nixos/modules/system/plymouth/default.nix

16 lines
No EOL
284 B
Nix

{ config, lib, ... }:
with lib;
let
cfg = config.modules.system.plymouth;
in
{
options.modules.system.plymouth = {
enable = mkEnableOption ''
Enable plymouth with my custom configurations
'';
};
config = mkIf cfg.enable {
boot.plymouth.enable = true;
};
}