moved obs-studio to home-manager module

also installed obs-pipewire-audio-capture using the home-manager module
This commit is contained in:
Gabriella Bere 2025-06-02 17:21:36 +01:00
parent 1aa38d8e77
commit 75f7f38f29
3 changed files with 9 additions and 1 deletions

View file

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