From 4a86ee758c75ad4cf39bb7453c0e6d319cbd26bf Mon Sep 17 00:00:00 2001 From: kenny Date: Sun, 29 Jun 2025 16:36:33 +0300 Subject: [PATCH] Removed the call to zsh --- dotnet.nix | 4 +--- rust-nightly.nix | 4 +--- rust.nix | 4 +--- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/dotnet.nix b/dotnet.nix index 59aa796..3018469 100644 --- a/dotnet.nix +++ b/dotnet.nix @@ -5,7 +5,5 @@ let pkgs = import (fetchTarball "channel:nixpkgs-unstable") { }; in pkgs.mkShell { buildInputs = [ pkgs.dotnet-sdk_9 ]; - shellHook = '' - exec zsh - ''; + shellHook = ""; } diff --git a/rust-nightly.nix b/rust-nightly.nix index 865c0d4..83f6991 100644 --- a/rust-nightly.nix +++ b/rust-nightly.nix @@ -9,7 +9,5 @@ stdenv.mkDerivation { # to use the latest nightly: nixpkgs.latest.rustChannels.nightly.rust ]; - shellHook = '' - exec zsh - ''; + shellHook = ""; } diff --git a/rust.nix b/rust.nix index cc2cd8b..e2da27a 100644 --- a/rust.nix +++ b/rust.nix @@ -5,7 +5,5 @@ let pkgs = import (fetchTarball "channel:nixpkgs-unstable") { }; in pkgs.mkShell { buildInputs = [ pkgs.cargo pkgs.rustc pkgs.zsh pkgs.bacon ]; - shellHook = '' - exec zsh - ''; + shellHook = ""; }