dotfiles/nix/modules/home-manager/features/desktop/media/kdenlive.nix

17 lines
252 B
Nix

{
config,
lib,
pkgs,
...
}:
with lib;
{
options.features.desktop.media.kdenlive.enable = mkEnableOption "Enable kdenlive";
config = mkIf config.features.desktop.media.kdenlive.enable {
home.packages = with pkgs; [ kdenlive ];
};
}