Regenerated

This commit is contained in:
2026-03-30 13:23:09 +00:00
parent 47b45b5537
commit e24c88a79b
5 changed files with 372 additions and 372 deletions
@@ -9,22 +9,24 @@ let
in
{
#################################
# Enable Starship system-wide
# Install Starship system-wide
#################################
environment.systemPackages = [ pkgs.starship ];
#################################
# Home Manager user configuration
#################################
_module.args.hmUsers = {
home-manager.users = {
${username} = {
programs.starship = {
enable = true;
};
# Copy the starship.toml from assets to ~/.config/starship.toml
home.file = {
".config/starship.toml" = { source = starshipConfSrc; };
".config/starship.toml" = {
source = starshipConfSrc;
force = true;
};
};
};
};
@@ -31,5 +31,8 @@ in
# Load optional per-user generated zshrc if it exists
[ -f "${generatedZsh}" ] && source "${generatedZsh}"
# Initialize Starship prompt
eval "$(starship init zsh)"
'';
}