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

View file

@ -53,6 +53,7 @@ in {
./user/neovim.nix
./user/neovim-minimal.nix
./user/npm.nix
./user/obs.nix
./user/packages-rin.nix
./user/pass.nix
./user/picom.nix

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
];
};
}