Use home-manager native obs-studio program options

This commit is contained in:
ItsDrike 2024-06-24 17:06:02 +02:00
parent 6efbedbe7d
commit aa057391a8
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
3 changed files with 4 additions and 2 deletions

View file

@ -4,5 +4,6 @@ _: {
./vesktop
./webcord
./mpv.nix
./obs.nix
];
}

View file

@ -0,0 +1,21 @@
{
lib,
pkgs,
osConfig,
...
}: let
inherit (lib) mkIf;
cfg = osConfig.myOptions.home-manager.programs.applications.obs;
in {
config = mkIf cfg.enable {
programs.obs-studio.enable = true;
home.packages = with pkgs; [
obs-cli
];
};
}