From cd0d2c6d0a56444f7d2c9ffdb9b3751f38c152bf Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Fri, 5 Jun 2026 12:33:43 +0200 Subject: [PATCH] Home/Nixinator: Enable nixos mcp server --- home/christoph/nixinator/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/home/christoph/nixinator/default.nix b/home/christoph/nixinator/default.nix index 5fd44a27..17398848 100644 --- a/home/christoph/nixinator/default.nix +++ b/home/christoph/nixinator/default.nix @@ -31,14 +31,15 @@ mcp = { enable = true; servers = { + nixos = { + command = "uvx"; + args = ["mcp-nixos"]; + }; svelte = { # claude mcp add -t stdio -s [scope] svelte -- npx -y @sveltejs/mcp - args = [ - "-y" - "@sveltejs/mcp" - ]; command = "npx"; - # type = "stdio"; + args = ["-y" "@sveltejs/mcp"]; + type = "stdio"; }; }; };