this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 24 lines 409 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 clang 13 wild 14 (rust-bin.stable.latest.default.override { 15 extensions = [ 16 "rust-src" 17 "rust-analyzer" 18 ]; 19 }) 20 ]; 21 shellHook = '' 22 echo hi 23 ''; 24}