Files
nixos-config/home/common/programs/claude/default.nix
T
Miguel Palhas b46e05fd71 claude commands
2025-11-19 09:25:40 +00:00

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;
}