12 lines
253 B
Nix
12 lines
253 B
Nix
{ ... }:
|
|
{
|
|
imports = [ ./shell ];
|
|
xdg.configFile."starship.toml".source = ./config/starship.toml;
|
|
programs.starship = {
|
|
enable = true;
|
|
enableBashIntegration = true;
|
|
enableZshIntegration = true;
|
|
enableFishIntegration = true;
|
|
};
|
|
}
|