mirror of
https://github.com/nix-community/nix-direnv.git
synced 2025-12-08 01:51:09 +01:00
fix devShell
In https://github.com/nix-community/nix-direnv/pull/450 I broke the default shell by accident
This commit is contained in:
parent
f9a08ca025
commit
913735d6b8
1 changed files with 11 additions and 10 deletions
|
|
@ -52,6 +52,8 @@
|
||||||
nixVersion = "stable";
|
nixVersion = "stable";
|
||||||
direnv = config.packages.direnv-bash4;
|
direnv = config.packages.direnv-bash4;
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
devShells.default = pkgs.callPackage ./shell.nix {
|
devShells.default = pkgs.callPackage ./shell.nix {
|
||||||
packages = [ config.treefmt.build.wrapper ];
|
packages = [ config.treefmt.build.wrapper ];
|
||||||
};
|
};
|
||||||
|
|
@ -63,7 +65,6 @@
|
||||||
in
|
in
|
||||||
packages // devShells;
|
packages // devShells;
|
||||||
};
|
};
|
||||||
};
|
|
||||||
flake = {
|
flake = {
|
||||||
overlays.default = final: _prev: {
|
overlays.default = final: _prev: {
|
||||||
nix-direnv = final.callPackage ./default.nix { };
|
nix-direnv = final.callPackage ./default.nix { };
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue