dotfiles/home-manager/modules/obs-studio/default.nix
2024-10-06 15:25:05 -05:00

12 lines
236 B
Nix
Executable file

{pkgs, ...}: {
programs = {
obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-tuna
obs-vkcapture
];
};
};
xdg.configFile."obs-studio/themes".source = ./themes;
}