From cc015310ea0aed7b8cfeae653d66e5ef314a7bac Mon Sep 17 00:00:00 2001 From: Bryce Berger Date: Wed, 1 Jan 2025 00:11:48 -0500 Subject: [PATCH] nix: add name to devshell This changes the `$name` environment variable from `nix-shell-env` to `jujutsu-env` when inside the nix-provided devshell. --- flake.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake.nix b/flake.nix index 1f76250c7..c17f18637 100644 --- a/flake.nix +++ b/flake.nix @@ -161,6 +161,7 @@ }); devShells.default = pkgs.mkShell { + name = "jujutsu"; packages = with pkgs; [ # NOTE (aseipp): explicitly add rust-src to the rustc compiler only in # devShell. this in turn causes a dependency on the rust compiler src,