nixos/home/obs/default.nix

16 lines
353 B
Nix
Raw Normal View History

2023-12-18 08:15:18 +00:00
{ pkgs, ... }: {
xdg.configFile."obs-studio/themes".source = ./themes;
home.packages = with pkgs; [ helvum ];
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
];
};
}