2023-12-18 08:15:18 +00:00
|
|
|
{ pkgs, ... }: {
|
|
|
|
xdg.configFile."obs-studio/themes".source = ./themes;
|
2024-01-26 19:59:09 +00:00
|
|
|
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-pipewire-audio-capture
|
|
|
|
input-overlay
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|