obs: Add plugins, open port for remote
This commit is contained in:
parent
018610f342
commit
4ae4aad98b
2 changed files with 12 additions and 3 deletions
|
@ -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
|
||||
]);
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue