20 lines
228 B
Nix
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;
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|