21 lines
464 B
Nix
21 lines
464 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.fish.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
fishPlugins.hydro
|
|
];
|
|
|
|
hj.".config/fish/config.fish".text = ''
|
|
function fish_greeting
|
|
end
|
|
|
|
if status is-interactive
|
|
set --global hydro_symbol_git_dirty "*"
|
|
set --global hydro_color_pwd blue
|
|
set --global hydro_color_git magenta
|
|
set --global hydro_color_prompt green
|
|
set --global hydro_color_duration yellow
|
|
end
|
|
'';
|
|
}
|