shells.nix (275B)
1 2 3 4 5 6 7 8 9 10 11 12
## Developer Shells ## {config, ...}: let inherit (config) util; in { perSystem = {pkgs, ...}: { devShells = util.map.modules ../../shells (file: pkgs.mkShell (import file pkgs)) // { default = import ../../shells {inherit pkgs;}; }; }; }