diff options
author | Ben Sima <ben@bsima.me> | 2025-05-01 19:39:00 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2025-05-01 19:39:00 -0400 |
commit | 3127cefa0d01f18b5c503e797ee1cf87aa61964c (patch) | |
tree | 749f48ffe0812f4ff8454177241fba2e32164281 /Omni/Dev/Beryllium/ObsStudio.nix | |
parent | 3b54925f115bf5f7252138b19e2f8acf6c6f6179 (diff) |
Enable OBS Studio with virtual camera
This adds a kernel module that allows the virtual camera to work.
https://nixos.wiki/wiki/OBS_Studio
Diffstat (limited to 'Omni/Dev/Beryllium/ObsStudio.nix')
-rw-r--r-- | Omni/Dev/Beryllium/ObsStudio.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Omni/Dev/Beryllium/ObsStudio.nix b/Omni/Dev/Beryllium/ObsStudio.nix new file mode 100644 index 0000000..151cf03 --- /dev/null +++ b/Omni/Dev/Beryllium/ObsStudio.nix @@ -0,0 +1,7 @@ +{...}: { + programs.obs-studio = { + enable = true; + enableVirtualCamera = true; + plugins = []; + }; +} |