mirror of
https://github.com/srid/nixos-config.git
synced 2026-04-17 01:35:45 +08:00
21 lines
331 B
Nix
21 lines
331 B
Nix
{ flake, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
flake.inputs.nix-agent-wire.homeModules.claude-code
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
tree
|
|
];
|
|
|
|
programs.claude-code = {
|
|
enable = true;
|
|
|
|
package = pkgs.claude-code;
|
|
|
|
autoWire.dirs = [
|
|
flake.inputs.skills.outPath
|
|
(flake.self.outPath + "/AI")
|
|
];
|
|
};
|
|
}
|