nix-stuff/roles/common/programs/starship.nix

14 lines
173 B
Nix

{ config, ... }:
{
programs.starship = {
enable = true;
settings = {
nix_shell = {
disabled = false;
heuristic = true;
symbol = "";
};
};
};
}