mirror of
https://github.com/ellmau/nixos.git
synced 2025-12-19 09:29:36 +01:00
15 lines
261 B
Nix
15 lines
261 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
|
|
];
|
|
};
|
|
}
|