1
0
Fork 0

feat(obs): add vkcapture

This commit is contained in:
Philipp 2026-02-21 15:45:28 +01:00
parent e386e5454c
commit 2e03be5790
Signed by: Philipp
GPG key ID: B27C3DE2FD94AFC3

View file

@ -16,12 +16,21 @@ in
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
home.packages = with pkgs; [
vulkan-tools
];
home.sessionVariables = {
OBS_VKCAPTURE = "1";
};
programs.obs-studio = { programs.obs-studio = {
enable = true; enable = true;
plugins = with pkgs.obs-studio-plugins; [ plugins = with pkgs.obs-studio-plugins; [
wlrobs wlrobs
obs-backgroundremoval obs-backgroundremoval
obs-pipewire-audio-capture obs-pipewire-audio-capture
obs-vkcapture
]; ];
}; };
}; };