This commit is contained in:
2026-02-28 20:25:13 +00:00
parent bf41ee6e0a
commit 525c6a220b
2 changed files with 15 additions and 0 deletions

View File

@@ -58,5 +58,14 @@ in {
htop-vim
]);
};
# Adjust zsh prompt for dev archetype: show '#' instead of '%'
home-manager.sharedModules = lib.mkAfter [
{
programs.zsh.initExtra = lib.mkAfter ''
PROMPT="# %~ "
'';
}
];
};
}