From 830890a60dee18ae347e52aaf34315b160d9b27d Mon Sep 17 00:00:00 2001 From: Elias Kohout Date: Tue, 7 Apr 2026 15:46:54 +0200 Subject: [PATCH] Revert NIX_BUILD_SHELL to bash for nix-shell compatibility --- home/default.nix | 1 - home/modules/shell.nix | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/home/default.nix b/home/default.nix index 700f819..59b83d5 100644 --- a/home/default.nix +++ b/home/default.nix @@ -43,7 +43,6 @@ TERM = "tmux-256color"; LESSHISTFILE = "${config.xdg.cacheHome}/less/lesshst"; MANPATH = "$MANPATH:/usr/local/man"; - NIX_BUILD_SHELL = "zsh"; NIXPKGS_ALLOW_UNFREE = "1"; }; home.sessionPath = [ diff --git a/home/modules/shell.nix b/home/modules/shell.nix index 52750e4..eb17028 100644 --- a/home/modules/shell.nix +++ b/home/modules/shell.nix @@ -1,7 +1,7 @@ { config, lib, ... }: { - + programs.bash.enable = true; programs.zsh = { enable = true; dotDir = "${config.xdg.configHome}/zsh";