nixos-config/hosts/x201/home-manager/starship.nix

12 lines
245 B
Nix

{ config, pkgs, ... }:
{
programs.starship = {
enable = true;
enableFishIntegration = true;
# Configuration écrite dans ~/.config/starship.toml
};
xdg.configFile = {
"starship.toml" .source = ./configs/starship.toml;
};
}