Working on termonal stuff

This commit is contained in:
2026-03-07 23:27:49 +01:00
parent 06c226f7cd
commit 775f591394
@@ -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"
];
};
}