nixos/modules/desktop/plymouth/default.nix
2023-09-01 08:04:01 +04:00

24 lines
383 B
Nix

{
outputs,
options,
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.modules.desktop.plymouth;
in {
options.modules.desktop.plymouth = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
boot.plymouth = {
enable = true;
};
# systemd.services.plymouth-quit = {
# preStart = "${pkgs.coreutils}/bin/sleep 7";
# };
};
}