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 = {
|
programs.obs-studio = {
|
||||||
enable = true;
|
enable = true;
|
||||||
plugins = [
|
plugins = [
|
||||||
pkgs.obs-studio-plugins.wlrobs
|
|
||||||
# pkgs.obs-studio-plugins.obs-gstreamer
|
|
||||||
pkgs.obs-backgroundremoval
|
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)));
|
] ++ (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.steam.enable = true;
|
||||||
programs.bandwhich.enable = true;
|
programs.bandwhich.enable = true;
|
||||||
programs.noisetorch.enable = true;
|
programs.noisetorch.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue