15 lines
237 B
Nix
15 lines
237 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
home.file.".default-npm-packages".text = ''
|
|
@anthropic-ai/claude-code
|
|
'';
|
|
|
|
home.file.".claude/commands".source = ./commands;
|
|
home.file.".claude/settings.json".source = ./settings.json;
|
|
}
|