zaneyos/config/home/kdenlive.nix

9 lines
167 B
Nix

{ pkgs, config, lib, ... }:
let inherit (import ../../options.nix) kdenlive; in
lib.mkIf (kdenlive == true) {
home.packages = with pkgs; [
pkgs.kdenlive
];
}