summaryrefslogtreecommitdiff
path: root/zsh/default.nix
diff options
context:
space:
mode:
authormediocregopher <mediocregopher@gmail.com>2023-12-16 15:51:15 +0100
committermediocregopher <mediocregopher@gmail.com>2023-12-16 15:51:15 +0100
commit878dea2de4c8f4289a9b1d08437f23d2a29021ea (patch)
treee0eb5c6b9640cdb6dc435bce07b31f6f0c87e889 /zsh/default.nix
parent97c6c2019397a969d886c11b3474d120658a5bc9 (diff)
Fixes coming from re-install on mediocre-desktop
Diffstat (limited to 'zsh/default.nix')
-rw-r--r--zsh/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/zsh/default.nix b/zsh/default.nix
index c324a33..bc4a795 100644
--- a/zsh/default.nix
+++ b/zsh/default.nix
@@ -25,6 +25,8 @@
};
zshrc = pkgs.writeTextDir ".zshrc" ''
+ # Import before anything else, so that we have the full PATH available for everything following
+ . ${pkgs.nix}/etc/profile.d/nix.sh
# oh-my-zsh
export ZSH=${pkgs.oh-my-zsh}/share/oh-my-zsh
@@ -44,7 +46,6 @@
. ${./zshrc}
. ${./aliases}
- . ${pkgs.nix}/etc/profile.d/nix.sh
'';
zsh = pkgs.writeScriptBin "zsh" ''