add mcp servers

This commit is contained in:
Filippo Berto 2025-12-08 16:38:57 +01:00
parent 236d96e292
commit d69fd10533
No known key found for this signature in database
GPG key ID: F1D17F9BCEC62FBC
3 changed files with 13 additions and 0 deletions

11
hm/mcp.nix Normal file
View file

@ -0,0 +1,11 @@
{
programs.mcp = {
enable = true;
servers = {
mcp-nixos = {
command = "nix";
args = [ "run" "github:utensils/mcp-nixos" "--" ];
};
};
};
}