stop fucking with /nix, retard

This commit is contained in:
Sridhar Ratnakumar 2026-05-26 09:42:41 -04:00
parent 776c4425b0
commit 6bb433025b

View file

@ -19,6 +19,15 @@
# CLAUDE_CODE_DISABLE_ADAPTIVE_THINKING = "1"; # CLAUDE_CODE_DISABLE_ADAPTIVE_THINKING = "1";
CLAUDE_CODE_DISABLE_AUTO_MEMORY = "1"; CLAUDE_CODE_DISABLE_AUTO_MEMORY = "1";
}; };
# Stop Claude from crawling /nix (the store is huge and ripgrep/find
# over it wedges sessions).
permissions.deny = [
"Bash(bfs /nix*)"
"Bash(grep * /nix*)"
"Bash(rg * /nix*)"
"Bash(find /nix*)"
"Bash(fd * /nix*)"
];
}; };
}; };
} }