From 775f591394e3c0f50af1cc6a519c415001246327 Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Sat, 7 Mar 2026 23:27:49 +0100 Subject: [PATCH] Working on termonal stuff --- .../generated/system/applications/terminal_shell/zsh.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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" ]; }; }