Move kdenkive to modules directories

This commit is contained in:
Yorick Barbanneau 2023-12-25 22:36:21 +01:00
parent 18ea2b4ec8
commit 2b7d1ec452
4 changed files with 1 additions and 1 deletions

View file

@ -1,19 +0,0 @@
{ pkgs, lib, config, ... }:
with lib;
let
cfg = config.modules.video.kdenlive;
in
{
options.modules.video.kdenlive = {
enable = mkEnableOption "enable Kdenlive video editor";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
kdenlive
ffmpeg-full
frei0r
inkscape
];
home.file.".local/bin/create_conf".source = ./files/create_conf;
};
}