mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-22 22:53:07 +01:00
10 lines
125 B
Nix
10 lines
125 B
Nix
|
{ pkgs, config, ... }:
|
||
|
|
||
|
{
|
||
|
# Starship Prompt
|
||
|
programs.starship = {
|
||
|
enable = true;
|
||
|
package = pkgs.starship;
|
||
|
};
|
||
|
}
|