nix-config/modules/nix/office/kdenlive.nix
smayzy 87a7013d51
All checks were successful
nixos config pipeline / show-flake (push) Successful in 27s
nixos config pipeline / deploy (push) Successful in 2m59s
update && remove floorp & stylix && mkForce nfv theme && change kdenlive pkg name cause changed upstream
2025-09-27 10:07:50 +02:00

23 lines
343 B
Nix

{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.kdenlive.enable = mkOption {
type = types.bool;
default = false;
description = "kdenlive";
};
config = mkIf config.smayzy.kdenlive.enable {
environment.systemPackages = with pkgs; [
kdePackages.kdenlive
];
};
}