summaryrefslogtreecommitdiff
path: root/features/user/gui/apps/obs.nix
diff options
context:
space:
mode:
Diffstat (limited to 'features/user/gui/apps/obs.nix')
-rw-r--r--features/user/gui/apps/obs.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/features/user/gui/apps/obs.nix b/features/user/gui/apps/obs.nix
new file mode 100644
index 0000000..916f11e
--- /dev/null
+++ b/features/user/gui/apps/obs.nix
@@ -0,0 +1,10 @@
+{ config, lib, ... }: let
+ cfg = config.features.gui.apps.obs;
+in {
+ options.features.gui.apps.obs.enable = lib.mkEnableOption "obs";
+ config = lib.mkIf cfg.enable {
+ programs.obs-studio = {
+ enable = true;
+ };
+ };
+}