summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Cullmann <christoph@cullmann.io>2024-06-27 23:25:42 +0200
committerChristoph Cullmann <christoph@cullmann.io>2024-06-27 23:25:42 +0200
commit9bd2e8c0c16fbe6ba42f60ad59ad98ec7f0b15bf (patch)
tree5541f3e234d96937525572fafe695843976d811a
parentf6207b8a7a84555c5f973398a444a2524c034679 (diff)
fix completion
-rw-r--r--common.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/common.nix b/common.nix
index f5ca1d3..606bbc0 100644
--- a/common.nix
+++ b/common.nix
@@ -515,6 +515,9 @@ in
programs.zsh.enable = true;
environment.shells = with pkgs; [ zsh ];
+ # needed for the ZSH completion
+ environment.pathsToLink = [ "/share/zsh" ];
+
# use micro as default terminal editor
environment.variables.EDITOR = "micro";