mirror of
https://github.com/ellmau/nixos.git
synced 2025-12-19 09:29:36 +01:00
11 lines
252 B
Nix
11 lines
252 B
Nix
{ config, pkgs, lib, ...}:
|
|
with lib;
|
|
{
|
|
options.elss.programs.obsstudio.enable = mkEnableOption "install obs-studio";
|
|
config = mkIf config.elss.programs.obsstudio.enable {
|
|
environment.systemPackages = with pkgs; [
|
|
obs-studio
|
|
];
|
|
};
|
|
}
|