summaryrefslogtreecommitdiff
path: root/features/user/gui/bundles/video.nix
diff options
context:
space:
mode:
Diffstat (limited to 'features/user/gui/bundles/video.nix')
-rw-r--r--features/user/gui/bundles/video.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/features/user/gui/bundles/video.nix b/features/user/gui/bundles/video.nix
deleted file mode 100644
index 491bf21..0000000
--- a/features/user/gui/bundles/video.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-{ 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;
- };
-}