Files
nixos-config/home/common/programs/claude/default.nix
T
Miguel Palhas 5098792587 wip
2025-11-22 09:49:13 +00:00

16 lines
291 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;
home.file.".claude/CLAUDE.md".source = ./CLAUDE.md;
}