2024-05-28 10:12:33 +02:00
|
|
|
{ config, lib, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
let
|
2025-01-29 21:56:40 +01:00
|
|
|
cfg = config.modules.system.boot.plymouth;
|
2024-05-28 10:12:33 +02:00
|
|
|
in
|
|
|
|
{
|
2025-01-29 21:56:40 +01:00
|
|
|
options.modules.system.boot.plymouth = {
|
2024-05-28 10:12:33 +02:00
|
|
|
enable = mkEnableOption ''
|
|
|
|
Enable plymouth with my custom configurations
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
boot.plymouth.enable = true;
|
|
|
|
};
|
|
|
|
}
|