mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-29 10:03:09 +01:00
9 lines
167 B
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
|
||
|
];
|
||
|
}
|