{ description = "Obsidian Map Viewer plugin dev environment"; inputs = { nixpkgs.url = "path:/nix/store/x2r24fmnvsmcb8sz2fqszbnp72v14hs2-source"; flake-utils.url = "github:numtide/flake-utils"; }; outputs = { self, nixpkgs, flake-utils, }: flake-utils.lib.eachDefaultSystem ( system: let pkgs = nixpkgs.legacyPackages.${system}; in { devShells.default = pkgs.mkShell { buildInputs = with pkgs; [ nodejs_22 ]; shellHook = '' echo "obs-map-viewer dev shell" echo "node $(node --version) | npm $(npm --version)" ''; }; } ); }