feat: change shell prompt libs to starship

This commit is contained in:
Rasyidan Akbar F. 2025-10-27 18:19:57 +07:00
commit 0057636558
3 changed files with 190 additions and 0 deletions

View file

@ -0,0 +1,7 @@
{ lib, ... }: {
programs.starship = {
enable = lib.mkDefault true;
enableNushellIntegration = true;
settings = lib.importTOML ./starship.toml;
};
}