File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1717 in
1818 {
1919 packages = forAllSystems ( pkgs : with pkgs ; {
20- default = ( { environments ? [ "nix" ] } : symlinkJoin {
21- name = "default" ;
22- paths = builtins . concatMap ( env : ( import ./devShells/${ env } .nix { inherit pkgs ; } ) . default ) environments ;
23- } ) { } ;
20+ default = ( { environments ? [ "nix" ] } : callPackage ./packages/default.nix { inherit environments ; } ) { } ;
2421
2522 vscodium = ( { environments ? [ "nix" ] } : callPackage ./packages/vscodium.nix {
2623 envExtensions = ( builtins . concatMap ( env : ( import ./devShells/${ env } .nix { inherit pkgs ; } ) . vscodium . extensions ) environments ) ;
Original file line number Diff line number Diff line change 1+ { environments , pkgs , ... } :
2+
3+ with pkgs ; symlinkJoin {
4+ name = "default" ;
5+ paths = builtins . concatMap ( env : ( import ../devShells/${ env } .nix { inherit pkgs ; } ) . default ) environments ;
6+ }
You can’t perform that action at this time.
0 commit comments