refactor: create obs module

This commit is contained in:
tux
2025-06-28 03:06:10 +05:30
parent a6fc5939a2
commit aba3c6e08b
2 changed files with 7 additions and 1 deletions

View File

@ -0,0 +1,6 @@
{pkgs, ...}: {
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [obs-vaapi];
};
}