21 lines
362 B
Nix
Raw Normal View History

2025-02-01 22:38:21 +01:00
{
config,
pkgs,
lib,
...
}: {
options = {
crony.obs-studio.enable = lib.mkEnableOption "Enable obs and install plugins.";
};
config = lib.mkIf config.crony.obs-studio.enable {
# Install obs-studio
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-vkcapture
];
};
};
}