10 lines
169 B
Nix
10 lines
169 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
xdg.configFile."starship.toml".source = ./starship.toml;
|
|
programs.starship = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
};
|
|
}
|