chore: complete AGENTS.md documentation

- Add comprehensive project documentation to AGENTS.md
- Remove stale docs from docs/ directory
- Update agent configs (agents.nix, pi.nix)
- Update python.nix language config
- Update .gitignore
This commit is contained in:
m3tm3re
2026-04-26 14:10:54 +02:00
parent eb06533174
commit 09bc9da6d9
8 changed files with 281 additions and 1422 deletions

View File

@@ -19,12 +19,15 @@ in {
};
config = mkIf cfg.enable {
home.packages = [
home.packages = with pkgs; [
(pkgs.python3.withPackages (ps:
with ps; [
pip
uv
] ++ cfg.extraPackages))
with ps;
[
pip
uv
]
++ cfg.extraPackages))
pyrefly
];
};
}