Skip to content

Commit

Permalink
flake: move devShell->devShells.default
Browse files Browse the repository at this point in the history
  • Loading branch information
colemickens committed Sep 26, 2023
1 parent 49d8153 commit 9a31d50
Showing 1 changed file with 20 additions and 18 deletions.
38 changes: 20 additions & 18 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -72,24 +72,26 @@

in
{
devShell = pkgs_.nixpkgs.mkShell {
nativeBuildInputs = [ ]
++ (with pkgs_.cachix; [ cachix ])
++ (with pkgs_.nixpkgs; [
nixUnstable
nix-prefetch
nix-build-uncached
bash
cacert
curl
git
jq
mercurial
nushell
openssh
ripgrep
])
;
devShells = {
default = pkgs_.nixpkgs.mkShell {
nativeBuildInputs = [ ]
++ (with pkgs_.cachix; [ cachix ])
++ (with pkgs_.nixpkgs; [
nixUnstable
nix-prefetch
nix-build-uncached
bash
cacert
curl
git
jq
mercurial
nushell
openssh
ripgrep
])
;
};
};

packages = variants;
Expand Down

0 comments on commit 9a31d50

Please sign in to comment.