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

@ -20,6 +20,7 @@
../../modules/home/easyeffects
../../modules/home/discord
../../modules/home/kdeconnect
../../modules/home/obs-studio
];
home.pointerCursor = {
@ -55,7 +56,6 @@
stable.rustdesk-flutter
rawtherapee
stable.beekeeper-studio
obs-studio
libreoffice-qt
spotify
stremio

View File

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