Revert NIX_BUILD_SHELL to bash for nix-shell compatibility

This commit is contained in:
2026-04-07 15:46:54 +02:00
parent 94a42cb3d1
commit 830890a60d
2 changed files with 1 additions and 2 deletions

View File

@@ -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 = [

View File

@@ -1,7 +1,7 @@
{ config, lib, ... }:
{
programs.bash.enable = true;
programs.zsh = {
enable = true;
dotDir = "${config.xdg.configHome}/zsh";