Jafner.net/nix/home-manager/app/obs-studio/obs-studio.nix
Joey Hafner bcb50ace24
Some checks failed
SSH and echo to file / ssh (push) Failing after 3s
Update from joey@joey-laptop: Modularize home-manager
2024-09-17 13:56:38 -07:00

12 lines
193 B
Nix

{ pkgs, ... }:
{
## OBS-Studio
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-vaapi
obs-vkcapture
input-overlay
];
};
}