This commit is contained in:
ItsDrike 2024-06-21 12:37:29 +02:00
parent d8513f4cdc
commit dddbbb869a
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
3 changed files with 21 additions and 0 deletions

19
home/packages/gui/obs.nix Normal file
View 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
];
};
}

View file

@ -175,6 +175,7 @@
}; };
nomacs.enable = true; nomacs.enable = true;
qbittorrent.enable = true; qbittorrent.enable = true;
obs.enable = true;
}; };
}; };
}; };

View file

@ -35,6 +35,7 @@ in
}; };
nomacs.enable = mkEnableOption "Nomacs (Qt-based image viewer)"; nomacs.enable = mkEnableOption "Nomacs (Qt-based image viewer)";
qbittorrent.enable = mkEnableOption "Qbittorrent (Free software BitTorrent client)"; qbittorrent.enable = mkEnableOption "Qbittorrent (Free software BitTorrent client)";
obs.enable = mkEnableOption "OBS (Free and oepn source software for video recording and live streaming)";
}; };
tools = { tools = {