diff options
author | Soispha <soispha@vhack.eu> | 2023-05-09 16:22:26 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-05-09 19:33:42 +0200 |
commit | 0203509d7f393f8777fbb25975871efaaa20bfc6 (patch) | |
tree | 99abecc930d97d4f98f8e331fd0aeee93efdff8c /home-manager/config | |
parent | Fix(system/libvirt): Enable ovmf for qemu (diff) | |
download | nixos-config-0203509d7f393f8777fbb25975871efaaa20bfc6.tar.gz nixos-config-0203509d7f393f8777fbb25975871efaaa20bfc6.zip |
Fix(hm/conf/zsh): Remove unneeded session path
Diffstat (limited to 'home-manager/config')
-rw-r--r-- | home-manager/config/zsh/default.nix | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/home-manager/config/zsh/default.nix b/home-manager/config/zsh/default.nix index 49a8663a..2e1a5a7c 100644 --- a/home-manager/config/zsh/default.nix +++ b/home-manager/config/zsh/default.nix @@ -10,10 +10,7 @@ # next one only works if your alias is only a command, e.g. if you `alias='cat some_file.txt &2> /dev/null'`, running `cat some_file.txt` won't trigger it. # TODO find something better for this use case # zsh-you-should-use # ZSH plugin that reminds you to use existing aliases for commands you just typed - home.sessionPath = [ - "/home/dt/.local/bin" - "/home/dt/.local/share/cargo/bin" - ]; + home.sessionPath = []; programs.zsh = { enable = true; enableAutosuggestions = true; |