Compare commits

...

2 commits

Author SHA1 Message Date
Harald Hoyer e8243a159d feat(starship): update shell settings configuration
- Enable `shell.disabled` option to ensure shell functionality.
- Add `shell.fish_indicator` with a fish emoji for Fish shell users.
2025-01-20 13:46:05 +01:00
Harald Hoyer 971eeac080 feat(aarch64): add Node.js to default packages
- Included Node.js in the default package list for aarch64.
- Ensures Node.js availability out of the box for related workflows.
2025-01-20 12:29:05 +01:00
2 changed files with 3 additions and 0 deletions

View file

@ -27,6 +27,8 @@ in
programs.starship = { programs.starship = {
enable = true; enable = true;
settings = { settings = {
shell.disabled = false;
shell.fish_indicator = "🐟";
container.format = "[\\[$name\\]]($style) "; container.format = "[\\[$name\\]]($style) ";
git_status = { git_status = {
ahead = "\${count}"; ahead = "\${count}";

View file

@ -46,6 +46,7 @@ with lib.metacfg;
attic-client attic-client
piper piper
gnome-remote-desktop gnome-remote-desktop
nodejs
]; ];
security.tpm2.enable = false; security.tpm2.enable = false;