summaryrefslogtreecommitdiff
path: root/home/baseline/zsh.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/baseline/zsh.nix')
-rw-r--r--home/baseline/zsh.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/home/baseline/zsh.nix b/home/baseline/zsh.nix
index 8dd169c..48fdd4a 100644
--- a/home/baseline/zsh.nix
+++ b/home/baseline/zsh.nix
@@ -6,9 +6,11 @@ in
config = {
programs.zsh = {
enable = true;
+
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
- initExtra = import ./zshrc.nix pkgs;
+
+ initContent = lib.mkAfter (import ./zshrc.nix pkgs);
};
};
}