reNixos/hand7s/programs/obs-studio.nix
s0me1newithhand7s 2939b08891 big staging update
Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
2025-12-29 16:42:07 +03:00

23 lines
343 B
Nix

{
config,
pkgs,
lib,
...
}: {
programs = {
obs-studio = {
enable =
lib.mkIf (
config.home.gui.sessionType == "Hyprland"
)
true;
plugins = with pkgs.obs-studio-plugins; [
wlrobs
waveform
obs-vkcapture
obs-pipewire-audio-capture
];
};
};
}