11 lines
229 B
Nix
11 lines
229 B
Nix
{ ... }:
|
|
{
|
|
programs.starship = {
|
|
enable = true;
|
|
#enableZshIntegration = true;
|
|
enableTransience = true;
|
|
enableFishIntegration = true;
|
|
|
|
settings = builtins.fromTOML (builtins.readFile ./starship.toml);
|
|
};
|
|
}
|