feat(xonsh): added starship

This commit is contained in:
Artur Manuel 2025-01-08 09:44:48 +00:00
commit b132ba2447
3 changed files with 158 additions and 0 deletions

View file

@ -38,6 +38,19 @@ in {
hash = "sha256-PhhdZ3iLPDEIG9uDeR5ctJ9zz2+YORHBhbsiLrJckyA=";
};
})
(let
name = "xontrib-prompt-starship";
version = "0.3.6";
in
ps.buildPythonPackage {
inherit name version;
src = fetchFromGitHub {
owner = "anki-code";
repo = name;
tag = version;
hash = "sha256-CLOvMa3L4XnH53H/k6/1W9URrPakPjbX1T1U43+eSR0=";
};
})
];
};
enable = true;
@ -45,6 +58,7 @@ in {
};
environment.systemPackages = [
pkgs.zoxide
pkgs.amadaluzian-starship
];
};
}