12 lines
245 B
Nix
12 lines
245 B
Nix
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
programs.starship = {
|
||
|
enable = true;
|
||
|
enableFishIntegration = true;
|
||
|
# Configuration écrite dans ~/.config/starship.toml
|
||
|
};
|
||
|
xdg.configFile = {
|
||
|
"starship.toml" .source = ./configs/starship.toml;
|
||
|
};
|
||
|
}
|