diff options
author | Jasper Ras <jras@hostnet.nl> | 2025-02-10 20:06:27 +0100 |
---|---|---|
committer | Jasper Ras <jras@hostnet.nl> | 2025-02-10 20:06:27 +0100 |
commit | 674678fe0a8d57b7a82dd6143efd67828b1b1e11 (patch) | |
tree | 899c59a1f875c63006913833323be060cb6a4b21 /configuration/work | |
parent | d3a6263ffb67fde491f77a4ba880ba8950dde966 (diff) |
remove plenv refs
Diffstat (limited to 'configuration/work')
-rw-r--r-- | configuration/work/home-manager.nix | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/configuration/work/home-manager.nix b/configuration/work/home-manager.nix index 494bb00..c3ee4d9 100644 --- a/configuration/work/home-manager.nix +++ b/configuration/work/home-manager.nix @@ -17,7 +17,7 @@ home.username = "jras"; home.homeDirectory = "/home/jras"; home.stateVersion = "22.11"; - home.sessionPath = [ "$HOME/.local/bin" "$HOME/.plenv/bin" ]; + home.sessionPath = [ "$HOME/.local/bin" ]; home.packages = with pkgs; [ slack @@ -54,9 +54,7 @@ ]; }; - programs.zsh.envExtra = "export PATH=$HOME/.plenv/bin:$PATH"; programs.zsh.initExtra = '' - eval "$(plenv init -)" eval "$(dircolors)" ''; programs.zsh.shellAliases = { |