From 52a73cfdf7f74713f044c42c57f90bb6143b9c61 Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Sat, 7 Mar 2026 23:07:58 +0100 Subject: [PATCH] Working on zsh --- .../generated/system/applications/terminal_shell/zsh.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Droidnix/generated/system/applications/terminal_shell/zsh.nix b/Droidnix/generated/system/applications/terminal_shell/zsh.nix index fd75c004e..3a5f220a7 100644 --- a/Droidnix/generated/system/applications/terminal_shell/zsh.nix +++ b/Droidnix/generated/system/applications/terminal_shell/zsh.nix @@ -2,14 +2,14 @@ config, pkgs, lib, + user, ... }: { programs.zsh = { enable = true; enableCompletion = true; - #autocd = true; - dotDir = "${config.xdg.configHome}/zsh"; + dotDir = "${config.xdg.configHome}/zsh"; # Remove `config.` prefix oh-my-zsh = { enable = true; theme = ""; @@ -26,5 +26,6 @@ }; autosuggestion.enable = true; syntaxHighlighting.enable = true; + zshoptions = [ "AUTO_CD" ]; }; }