12 lines
259 B
Nix
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
|
|
];
|
|
}
|