Add OBS Studio

This commit is contained in:
Evie Litherland-Smith 2023-10-20 18:52:10 +01:00
parent 5d429868b9
commit 3867e54112
2 changed files with 15 additions and 0 deletions

View file

@ -51,6 +51,7 @@
./home/firefox.nix ./home/firefox.nix
./home/kdeconnect.nix ./home/kdeconnect.nix
./home/media.nix ./home/media.nix
./home/obs.nix
./home/pass.nix ./home/pass.nix
./home/zathura.nix ./home/zathura.nix
]; ];

14
home/obs.nix Normal file
View file

@ -0,0 +1,14 @@
{ config, lib, pkgs, ... }:
{
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
wlrobs
obs-vkcapture
obs-pipewire-audio-capture
obs-gstreamer
input-overlay
];
};
}