DashNix/modules/programs/plymouth.nix
2024-12-22 16:01:24 +01:00

19 lines
365 B
Nix

{
lib,
config,
options,
...
}:
{
options.mods.plymouth = {
enable = lib.mkOption {
default = true;
example = false;
type = lib.types.bool;
description = "Enables the plymouth";
};
};
config = lib.mkIf config.mods.plymouth.enable (
lib.optionalAttrs (options ? boot.plymouth) { boot.plymouth.enable = true; }
);
}