Files
nixos/hosts/nb/modules/development/mcp.nix
2025-04-25 20:35:33 +02:00

12 lines
259 B
Nix

{ config, pkgs, lib, ... }:
let
in {
nixpkgs.overlays = [
(import (builtins.fetchTarball "https://github.com/natsukium/mcp-servers-nix/archive/main.tar.gz")).overlays.default
];
environment.systemPackages = with pkgs; [
mcp-server-fetch
];
}