nixos/modules/system/boot/plymouth.nix
Florian RICHER 259cb74fd3
All checks were successful
check / check (push) Successful in 33s
Refactor: Rename hardware.* by category
Fix #5
2025-01-29 21:56:40 +01:00

16 lines
No EOL
294 B
Nix

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