dotfiles/home-manager/modules/obs-studio/default.nix

13 lines
236 B
Nix
Raw Normal View History

2024-10-06 15:25:05 -05:00
{pkgs, ...}: {
programs = {
obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-tuna
obs-vkcapture
];
};
};
xdg.configFile."obs-studio/themes".source = ./themes;
}