blob: 8e392204d484574ade564bcc7d3a75ea94e8b489 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
{
config,
lib,
...
}: let
cfg = config.sils.plymouth;
in {
options.sils.plymouth.enable = lib.mkEnableOption "Enable Plymouth";
config = lib.mkIf cfg.enable {
boot.plymouth.enable = true;
};
}
|