nixos/home/hyprland/obs/default.nix

15 lines
312 B
Nix
Raw Normal View History

2023-12-18 08:15:18 +00:00
{ pkgs, ... }: {
xdg.configFile."obs-studio/themes".source = ./themes;
2023-10-20 18:52:10 +01:00
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
wlrobs
obs-vkcapture
obs-backgroundremoval
2023-10-20 18:52:10 +01:00
obs-pipewire-audio-capture
obs-gstreamer
input-overlay
];
};
}