Move kdenkive to modules directories
This commit is contained in:
parent
18ea2b4ec8
commit
2b7d1ec452
4 changed files with 1 additions and 1 deletions
19
modules/home-manager/video/kdenlive/default.nix
Normal file
19
modules/home-manager/video/kdenlive/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ 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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue