mirror of
https://github.com/srid/nixos-config.git
synced 2026-05-02 03:45:40 +08:00
20 lines
414 B
Nix
20 lines
414 B
Nix
{ flake, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
flake.inputs.nix-agent-wire.homeModules.claude-code
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
tree
|
|
];
|
|
|
|
programs.claude-code = {
|
|
enable = true;
|
|
|
|
# Installed outside Nix (e.g., via npm) to get auto-updates.
|
|
# This requires disabling autoWire too, since wiring MCP servers
|
|
# needs a package to wrap.
|
|
package = null;
|
|
autoWire.enable = false;
|
|
};
|
|
}
|