14 lines
173 B
Nix
14 lines
173 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
programs.starship = {
|
|
enable = true;
|
|
settings = {
|
|
nix_shell = {
|
|
disabled = false;
|
|
heuristic = true;
|
|
symbol = "";
|
|
};
|
|
};
|
|
};
|
|
}
|