user/obs: init

This commit is contained in:
LavaDesu 2023-09-13 21:41:36 +07:00
parent 3c3ac706a1
commit 48ee7576b9
Signed by: cilly
GPG key ID: 6500251E087653C9
4 changed files with 12 additions and 1 deletions

10
modules/user/obs.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, ... }: {
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-pipewire-audio-capture
obs-vaapi
obs-vkcapture
];
};
}