Files
azos/modules/home-manager/zoom.nix
T
2025-05-24 00:24:48 +03:00

18 lines
310 B
Nix
Executable File

{ lib, config, pkgs, ... }:
let
isEnabled =
config.azos.zoom.enable;
in {
options.azos.zoom.enable = lib.mkOption {
default = true;
example = true;
type = lib.types.bool;
};
config = lib.mkIf isEnabled {
home.packages = with pkgs; [
zoom-us
];
};
}