19 lines
328 B
Nix
19 lines
328 B
Nix
{ pkgs, inputs }:
|
|
let
|
|
packages = [
|
|
pkgs.codex
|
|
inputs.self.packages.${pkgs.system}.nixos-mcp
|
|
];
|
|
in
|
|
{
|
|
inherit packages;
|
|
devShell = pkgs.mkShell {
|
|
inherit packages;
|
|
name = "mcp-dev-shell";
|
|
shellHook = ''
|
|
export CODEX_HOME=$PWD/.codex
|
|
echo "MCP shell ready: codex + nixos-mcp"
|
|
'';
|
|
};
|
|
}
|