mirror of
https://github.com/EdenQwQ/nixos.git
synced 2025-12-26 18:34:56 +08:00
10 lines
252 B
Nix
10 lines
252 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
home = {
|
|
packages = with pkgs; [ claude-code ];
|
|
sessionVariables = {
|
|
ANTHROPIC_BASE_URL = "https://anyrouter.top";
|
|
ANTHROPIC_AUTH_TOKEN = "$(cat ${config.age.secrets.anyrouter_token.path})";
|
|
};
|
|
};
|
|
}
|