diff --git a/Droidnix/generated/system/applications/terminal_shell/zsh.nix b/Droidnix/generated/system/applications/terminal_shell/zsh.nix index 8ad1db625..af7786d3e 100644 --- a/Droidnix/generated/system/applications/terminal_shell/zsh.nix +++ b/Droidnix/generated/system/applications/terminal_shell/zsh.nix @@ -32,7 +32,7 @@ in }; }; - # Single, consolidated .zshrc + # Single source of truth for .zshrc xdg.configFile."zsh/.zshrc".text = lib.concatStringsSep "\n" [ "# Zsh options" "setopt AUTO_CD" @@ -44,8 +44,11 @@ in "source \"${pkgs.zsh}/share/zsh/functions/Newuser/zsh-newuser-install\"" "source \"${zshConfigDir}/oh-my-zsh.sh\"" "" - "# Starship (if used)" + "# Starship" "eval \"$(starship init zsh)\"" + "" + "# User customizations (if any)" + "source \"${zshConfigDir}/custom.zsh\" # Optional: for user-specific additions" ]; }; }