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
Generated
+7 -7
View File
@@ -6,11 +6,11 @@
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
}, },
"locked": { "locked": {
"lastModified": 1745406072, "lastModified": 1748034246,
"narHash": "sha256-BrpSzlkjkSVEdL3BHHaNnwuUZ719iK6aOTM7o7JAXxM=", "narHash": "sha256-du3KwaQ/h/NkZYAXBLid40EWijlq+awvwO1rOfiVf8k=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "585df87d537867b8193b70ffe4cb1b201291e22b", "rev": "ed037ad1d9d6bb3ad978bbee91368233c9a60520",
"revCount": 41, "revCount": 45,
"type": "git", "type": "git",
"url": "file:./azos-core" "url": "file:./azos-core"
}, },
@@ -94,11 +94,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1745279238, "lastModified": 1747862697,
"narHash": "sha256-AQ7M9wTa/Pa/kK5pcGTgX/DGqMHyzsyINfN7ktsI7Fo=", "narHash": "sha256-U4HaNZ1W26cbOVm0Eb5OdGSnfQVWQKbLSPrSSa78KC0=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "9684b53175fc6c09581e94cc85f05ab77464c7e3", "rev": "2baa12ff69913392faf0ace833bc54bba297ea95",
"type": "github" "type": "github"
}, },
"original": { "original": {
+1
View File
@@ -1,5 +1,6 @@
{ {
imports = [ imports = [
./zoom.nix
./mail.nix ./mail.nix
./encryption.nix ./encryption.nix
./kubernetes.nix ./kubernetes.nix
+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
];
};
}