obs: Add plugins, open port for remote

This commit is contained in:
Erwin Boskma 2023-03-21 17:22:18 +01:00
parent 018610f342
commit 4ae4aad98b
Signed by: erwin
SSH key fingerprint: SHA256:CyeNoWXd3kjX2Nwu6pDxxdS7OqmPVOy0NavA/KU/ntU
2 changed files with 12 additions and 3 deletions

View file

@ -13,10 +13,15 @@ in
programs.obs-studio = {
enable = true;
plugins = [
pkgs.obs-studio-plugins.wlrobs
# pkgs.obs-studio-plugins.obs-gstreamer
pkgs.obs-backgroundremoval
];
]
++ (with pkgs.obs-studio-plugins; [
wlrobs
obs-vaapi
obs-gstreamer
obs-pipewire-audio-capture
obs-vkcapture
]);
};
};
}

View file

@ -247,6 +247,10 @@ in
] ++ (map (mod: (../../home-manager/modules + "/${mod}")) (builtins.attrNames (builtins.readDir ../../home-manager/modules)));
};
# OBS control websocket
networking.firewall.allowedTCPPorts = [ 4455 ];
programs.steam.enable = true;
programs.bandwhich.enable = true;
programs.noisetorch.enable = true;