How to setup claude-cli and mcp-nixos on NixOS
I took a simple approach here by using a module style install. Create a claude.nix and drop this in it: { config, pkgs, lib, ... }: with lib; let # Import the unstable channel unstable = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz") { config = config.nixpkgs.config; }; in…