Added claude.

This commit is contained in:
2026-04-09 13:25:21 +03:00
parent 6215127089
commit dc47722b8b
+19
View File
@@ -0,0 +1,19 @@
{
lib,
config,
pkgs,
...
}: let
isEnabled =
config.azos.claude.enable;
in {
options.azos.claude.enable = lib.mkOption {
default = true;
example = true;
type = lib.types.bool;
};
config = lib.mkIf isEnabled {
home.packages = with pkgs; [claude-code claude-agent-acp];
};
}