feat(mcp-gateway): add NixOS module with systemd service

Provides services.mcp-gateway module for easy systemd integration:
  config.services.mcp-gateway = {
    enable = true;
    configFile = "/etc/mcp-gateway/gateway.yaml";
  };
This commit is contained in:
2026-05-06 18:21:18 +03:00
parent 9fb3eebd8a
commit e327504f4e
2 changed files with 50 additions and 0 deletions

View File

@@ -55,6 +55,10 @@
// {
packages = inputs.nixpkgs.lib.recursiveUpdate blueprintOutputs.packages extraPackages;
nixosModules = {
mcp-gateway = ./modules/mcp-gateway.nix;
};
overlays = {
default = import ./overlays {
inherit (blueprintOutputs) packages;