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