Removed old comments from home declaration

This commit is contained in:
Emile Clark-Boman 2025-07-07 00:40:45 +10:00
parent 5cd5ca4987
commit f98b3fd945
2 changed files with 17 additions and 115 deletions

16
homes/modules/obs.nix Executable file
View file

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