From 77a6cbb1c1feeb6b6424d35319ac6226c780b34a Mon Sep 17 00:00:00 2001 From: jD91mZM2 Date: Wed, 9 May 2018 14:58:29 +0200 Subject: [PATCH] zsh: move setEnvironment stuff to zprofile --- nixos/modules/programs/zsh/zsh.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/programs/zsh/zsh.nix b/nixos/modules/programs/zsh/zsh.nix index f689250dc61f..b88f54678ee1 100644 --- a/nixos/modules/programs/zsh/zsh.nix +++ b/nixos/modules/programs/zsh/zsh.nix @@ -108,8 +108,6 @@ in if [ -n "$__ETC_ZSHENV_SOURCED" ]; then return; fi export __ETC_ZSHENV_SOURCED=1 - ${config.system.build.setEnvironment.text} - ${cfge.shellInit} ${cfg.shellInit} @@ -129,6 +127,8 @@ in if [ -n "$__ETC_ZPROFILE_SOURCED" ]; then return; fi __ETC_ZPROFILE_SOURCED=1 + ${config.system.build.setEnvironment.text} + ${cfge.loginShellInit} ${cfg.loginShellInit}