mirror of
https://github.com/ItsDrike/nixdots
synced 2024-12-25 07:24:34 +00:00
Add OBS
This commit is contained in:
parent
d8513f4cdc
commit
dddbbb869a
19
home/packages/gui/obs.nix
Normal file
19
home/packages/gui/obs.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
lib,
|
||||
pkgs,
|
||||
osConfig,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkIf;
|
||||
|
||||
cfg = osConfig.myOptions.home-manager.programs.applications.obs;
|
||||
in {
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = with pkgs; [
|
||||
obs-studio
|
||||
obs-cli
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
|
|
@ -175,6 +175,7 @@
|
|||
};
|
||||
nomacs.enable = true;
|
||||
qbittorrent.enable = true;
|
||||
obs.enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -35,6 +35,7 @@ in
|
|||
};
|
||||
nomacs.enable = mkEnableOption "Nomacs (Qt-based image viewer)";
|
||||
qbittorrent.enable = mkEnableOption "Qbittorrent (Free software BitTorrent client)";
|
||||
obs.enable = mkEnableOption "OBS (Free and oepn source software for video recording and live streaming)";
|
||||
};
|
||||
|
||||
tools = {
|
||||
|
|
Loading…
Reference in a new issue