blob: 916f11e32a1ae7e297f8660c21fdb213a472c6c0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{ config, lib, ... }: let
cfg = config.features.gui.apps.obs;
in {
options.features.gui.apps.obs.enable = lib.mkEnableOption "obs";
config = lib.mkIf cfg.enable {
programs.obs-studio = {
enable = true;
};
};
}
|