Files
nixos-conf/home-manager/packages/starship/starship.nix
2025-08-27 10:47:56 -06:00

10 lines
169 B
Nix

{ config, pkgs, ... }:
{
xdg.configFile."starship.toml".source = ./starship.toml;
programs.starship = {
enable = true;
enableFishIntegration = true;
};
}