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,7 +4,6 @@ _: {
./stremio.nix
./nomacs.nix
./qbittorrent.nix
./obs.nix
./qimgv.nix
];
}

View file

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

View file

@ -9,11 +9,13 @@
cfg = osConfig.myOptions.home-manager.programs.applications.obs;
in {
config = mkIf cfg.enable {
programs.obs-studio.enable = true;
home.packages = with pkgs; [
obs-studio
obs-cli
];
};
}