nixos/home/env/starship.nix

12 lines
253 B
Nix
Raw Normal View History

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