dots/users/price/conf/starship/default.nix
Price Hiller bfe6ed84f2
Some checks failed
Check Formatting of Files / Check-Formatting (push) Has been cancelled
refactor(hm/price): ensure starship uses XDG_CACHE_HOME
2024-08-29 22:55:34 -05:00

8 lines
151 B
Nix

{ config, pkgs, ... }:
{
home = {
packages = [ pkgs.starship ];
sessionVariables.STARSHIP_CACHE = "${config.xdg.cacheHome}/starship";
};
}