This commit is contained in:
2025-05-24 00:24:48 +03:00
parent a13717962b
commit 2611b95f88
4 changed files with 26 additions and 8 deletions
+17
View File
@@ -0,0 +1,17 @@
{ 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
];
};
}