12 lines
216 B
Nix
12 lines
216 B
Nix
{ ... }:
|
|
{
|
|
programs.fish = {
|
|
enable = true;
|
|
interactiveShellInit = ''
|
|
set -g fish_greeting ""
|
|
'';
|
|
};
|
|
|
|
xdg.configFile."fish/functions/fish_prompt.fish".source = ./functions/fish_prompt.fish;
|
|
}
|