Add OBS and Stream Controller.

This commit is contained in:
jay
2025-06-29 19:58:50 -04:00
parent f8fbed4ba3
commit 74f2f69e05
3 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{ pkgs, ... }: {
programs.obs-studio = {
enable = true;
package = (pkgs.obs-studio.override {
cudaSupport = true;
});
plugins = with pkgs.obs-studio-plugins; [
wlrobs
obs-backgroundremoval
obs-pipewire-audio-capture
obs-vkcapture
advanced-scene-switcher
];
};
}

View File

@@ -0,0 +1,8 @@
{ pkgs, ... }: {
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = [
pkgs.streamcontroller
];
}