Add bashInteractive to nix dev shell

This commit is contained in:
Marcin Kulik
2025-05-05 21:35:19 +02:00
parent b340d463c4
commit ee074c44d1
2 changed files with 4 additions and 1 deletions

View File

@@ -31,7 +31,7 @@
}; };
}; };
devShells = pkgs.callPackages ./shell.nix {inherit packageToml self';}; devShells = pkgs.callPackages ./shell.nix {inherit pkgs packageToml self';};
packages.default = pkgs.callPackage ./default.nix { packages.default = pkgs.callPackage ./default.nix {
inherit packageToml; inherit packageToml;

View File

@@ -1,5 +1,6 @@
{ {
self', self',
pkgs,
packageToml, packageToml,
rust-bin, rust-bin,
mkShell, mkShell,
@@ -21,6 +22,8 @@ let
}) })
]; ];
buildInputs = [ pkgs.bashInteractive ];
env.RUST_BACKTRACE = 1; env.RUST_BACKTRACE = 1;
}; };
in in