Skip to content

Commit

Permalink
[Flake] Make devshells use overlays
Browse files Browse the repository at this point in the history
  • Loading branch information
LongerHV committed Dec 12, 2024
1 parent 6608480 commit b18b27e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@
overlays.default = defaultOverlay;

devShells = forAllSystems (system: {
default = nixpkgs.legacyPackages.${system}.callPackage ./shell.nix { };
node = nixpkgs.legacyPackages.${system}.callPackage ./shells/node.nix { };
go = nixpkgs.legacyPackages.${system}.callPackage ./shells/go.nix { };
python = nixpkgs.legacyPackages.${system}.callPackage ./shells/python.nix { };
pythonVenv = nixpkgs.legacyPackages.${system}.callPackage ./shells/pythonVenv.nix { };
lint = nixpkgs.legacyPackages.${system}.callPackage ./shells/lint.nix { };
default = legacyPackages.${system}.callPackage ./shell.nix { };
node = legacyPackages.${system}.callPackage ./shells/node.nix { };
go = legacyPackages.${system}.callPackage ./shells/go.nix { };
python = legacyPackages.${system}.callPackage ./shells/python.nix { };
pythonVenv = legacyPackages.${system}.callPackage ./shells/pythonVenv.nix { };
lint = legacyPackages.${system}.callPackage ./shells/lint.nix { };
});

formatter = forAllSystems (system: nixpkgs.legacyPackages."${system}".nixpkgs-fmt);
Expand Down

0 comments on commit b18b27e

Please sign in to comment.