Add OBS and Stream Controller.
This commit is contained in:
17
nodes/hosts/common/programs/obs-studio.nix
Normal file
17
nodes/hosts/common/programs/obs-studio.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
8
nodes/hosts/common/programs/streamcontroller.nix
Normal file
8
nodes/hosts/common/programs/streamcontroller.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ pkgs, ... }: {
|
||||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
environment.systemPackages = [
|
||||
pkgs.streamcontroller
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user