9 lines
285 B
Nix
9 lines
285 B
Nix
{ lib, config, pkgs, pkgs-stable, inputs, outputs, home-manager, ... }:
|
|
with lib;
|
|
let cfg = config.roles.zoom;
|
|
in {
|
|
options.roles.zoom = { enable = lib.mkEnableOption "citrix tools"; };
|
|
config = mkIf cfg.enable {
|
|
home-manager.users.don.home.packages = [ pkgs.zoom-us ];
|
|
};
|
|
}
|