diff --git a/modules/home/apps/obs/default.nix b/modules/home/apps/obs/default.nix index 30c7301..db7773c 100644 --- a/modules/home/apps/obs/default.nix +++ b/modules/home/apps/obs/default.nix @@ -16,12 +16,21 @@ in }; config = mkIf cfg.enable { + home.packages = with pkgs; [ + vulkan-tools + ]; + + home.sessionVariables = { + OBS_VKCAPTURE = "1"; + }; + programs.obs-studio = { enable = true; plugins = with pkgs.obs-studio-plugins; [ wlrobs obs-backgroundremoval obs-pipewire-audio-capture + obs-vkcapture ]; }; };