initial commit

This commit is contained in:
2026-02-06 13:52:54 +01:00
commit e74b485510
10 changed files with 851 additions and 0 deletions

27
devshells/default.nix Normal file
View File

@@ -0,0 +1,27 @@
{
pkgs,
system,
jailed-agents,
mcp-servers,
}:
pkgs.mkShell {
packages =
with pkgs;
[
nixfmt-rfc-style
nil
nix-tree
(jailed-agents.lib.${system}.makeJailed system {
agentTool = "opencode";
extraPkgs =
(with pkgs; [ mcp-nixos ])
++ (with mcp-servers.packages.${system}; [ duckduckgo-mcp-server ]);
})
];
shellHook = ''
echo "Nix packages development environment"
echo "Available tools: nixfmt-rfc-style, nil, nix-tree, opencode (jailed agent)"
'';
}