From 6bbe9584d408bf98a503a0cfd15821f70d18832f Mon Sep 17 00:00:00 2001 From: Frantisek Bohacek Date: Sat, 28 Oct 2023 12:04:30 +0200 Subject: [PATCH] fix: set system environment in zsh Zsh had environment from the wm, qtile. That contains python environment that I do not want. This sources the environment of the system, without the qtile env --- modules/shell/zsh.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/shell/zsh.nix b/modules/shell/zsh.nix index 928d829..81f4018 100644 --- a/modules/shell/zsh.nix +++ b/modules/shell/zsh.nix @@ -25,6 +25,8 @@ function loc { nix-locate --top-level -w /bin/$1 } + + source /etc/set-environment ''; }; }; -- 2.48.1