10 lines
153 B
Nix
10 lines
153 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.fish.enable = true;
|
|
home.shell.enableFishIntegration = true;
|
|
programs.fish.functions = {
|
|
fish_greeting = "";
|
|
};
|
|
}
|