mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 00:57:22 +01:00
feat[client]: add obs-studio
This commit is contained in:
parent
a34dd0dfd7
commit
04f6b7eeb9
3 changed files with 34 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
13
modules/home/common/obs-studio.nix
Normal file
13
modules/home/common/obs-studio.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
|
@ -70,7 +70,7 @@
|
|||
restic
|
||||
|
||||
# "big" programs
|
||||
obs-studio
|
||||
# obs-studio
|
||||
gimp
|
||||
inkscape
|
||||
zoom-us
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue