blob: 491bf211f0c2937604382e26d4aea267f28587cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{ config, pkgs, lib, ... }: let
cfg = config.features.gui.bundles.video;
in {
options.features.gui.bundles.video.enable = lib.mkEnableOption "video";
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
kdePackages.kdenlive
];
features.gui.apps.obs.enable = true;
};
}
|