nixos/modules/system/plymouth/default.nix

16 lines
290 B
Nix
Raw Normal View History

2024-05-25 01:32:48 +02:00
{ config, pkgs, 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;
};
}