1{ 2 perSystem = 3 { pkgs, ... }: 4 { 5 devShells.default = pkgs.mkShell { 6 nativeBuildInputs = builtins.attrValues { 7 inherit (pkgs) 8 just 9 nh 10 ; 11 }; 12 }; 13 }; 14}