Files
nixos-conf/home-manager/packages/starship/starship.nix
2025-08-20 09:38:25 -06:00

20 lines
228 B
Nix

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