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

18 lines
240 B
Nix

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