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

12 lines
245 B
Nix
Raw Normal View History

2023-07-15 17:01:55 +00:00
{ config, pkgs, ... }:
{
programs.starship = {
enable = true;
enableFishIntegration = true;
# Configuration écrite dans ~/.config/starship.toml
};
xdg.configFile = {
"starship.toml" .source = ./configs/starship.toml;
};
}