this repo has no description
at main 31 lines 481 B view raw
1let 2 sources = import ./npins; 3 pkgs = import sources.nixpkgs { 4 config.allowUnfree = true; 5 overlays = [ 6 (import sources.rust-overlay) 7 ]; 8 }; 9in 10pkgs.mkShellNoCC { 11 nativeBuildInputs = with pkgs; [ 12 helix 13 nixfmt 14 npins 15 clang 16 wild 17 nixd 18 ripgrep 19 just 20 just-lsp 21 (rust-bin.stable.latest.default.override { 22 extensions = [ 23 "rust-src" 24 "rust-analyzer" 25 ]; 26 }) 27 ]; 28 shellHook = '' 29 echo hi 30 ''; 31}