feat[client]: add obs-studio

This commit is contained in:
Leon Schwarzäugl 2025-10-11 23:21:11 +02:00
parent a34dd0dfd7
commit 04f6b7eeb9
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
3 changed files with 34 additions and 2 deletions

View file

@ -11172,7 +11172,7 @@ This holds packages that I can use as provided, or with small modifications (as
restic
# "big" programs
obs-studio
# obs-studio
gimp
inkscape
zoom-us
@ -14714,6 +14714,25 @@ This service changes the screen hue at night. I am not sure if that really does
}
#+end_src
**** obs-studio
#+begin_src nix-ts :tangle modules/home/common/obs-studio.nix
{ lib, config, ... }:
let
moduleName = "obs-studio";
in
{
options.swarselmodules.${moduleName} = lib.mkEnableOption "enable ${moduleName} and settings";
config = lib.mkIf config.swarselmodules.${moduleName} {
programs.${moduleName} = {
enable = true;
};
};
}
#+end_src
**** vesktop
#+begin_src nix-ts :tangle modules/home/common/vesktop.nix

View file

@ -0,0 +1,13 @@
{ lib, config, ... }:
let
moduleName = "obs-studio";
in
{
options.swarselmodules.${moduleName} = lib.mkEnableOption "enable ${moduleName} and settings";
config = lib.mkIf config.swarselmodules.${moduleName} {
programs.${moduleName} = {
enable = true;
};
};
}

View file

@ -70,7 +70,7 @@
restic
# "big" programs
obs-studio
# obs-studio
gimp
inkscape
zoom-us