rest of the split migration
This commit is contained in:
18
modules/dev/mcp/common.nix
Normal file
18
modules/dev/mcp/common.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{ 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"
|
||||
'';
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user