chore: update flake, agents lib, and clean up tracked dotfiles
Some checks failed
Update Nix Packages with nix-update / nix-update (push) Failing after 3m59s

- Remove .pi* and .td-root files from git index (now in .gitignore)
- Update flake.lock and flake.nix
- Add shells/coding.nix, remove shells/opencode.nix
- Update lib/agents.nix, lib/coding-rules.nix
- Update modules/home-manager/coding/agents/pi.nix
- Update tests for agents and coding-rules
- Update .gitignore
This commit is contained in:
sascha.koenig
2026-04-21 20:24:38 +02:00
parent 300ef0c28f
commit 69b736e302
21 changed files with 452 additions and 202 deletions

View File

@@ -4,6 +4,7 @@
{
pkgs,
inputs,
agents ? null,
}: {
# Default shell for working on this repository
default = pkgs.mkShell {
@@ -32,5 +33,5 @@
# Import all individual shell environments
python = import ./python.nix {inherit pkgs inputs;};
devops = import ./devops.nix {inherit pkgs inputs;};
opencode = import ./opencode.nix {inherit pkgs inputs;};
coding = import ./coding.nix {inherit pkgs inputs agents;};
}