mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 17:45:12 -05:00
24 lines
408 B
Nix
Executable file
24 lines
408 B
Nix
Executable file
{ pkgs, ... }:
|
|
{
|
|
programs = {
|
|
obs-studio = {
|
|
enable = true;
|
|
plugins = builtins.attrValues {
|
|
inherit (pkgs.obs-studio-plugins)
|
|
wlrobs
|
|
obs-tuna
|
|
obs-vkcapture
|
|
obs-multi-rtmp
|
|
obs-webkitgtk
|
|
;
|
|
};
|
|
};
|
|
};
|
|
home = {
|
|
file = {
|
|
"./.config/obs-studio/themes" = {
|
|
source = ./themes;
|
|
};
|
|
};
|
|
};
|
|
}
|