21 lines
322 B
Nix
21 lines
322 B
Nix
{
|
|
pkgs,
|
|
terminal,
|
|
...
|
|
}: {
|
|
programs.zoxide.enable = true;
|
|
programs.fish = {
|
|
enable = true;
|
|
interactiveShellInit = ''
|
|
set fish_greeting
|
|
fish_vi_key_bindings
|
|
zoxide init fish | source
|
|
|
|
'';
|
|
shellAliases = terminal.fishAliases;
|
|
|
|
plugins = with pkgs.fishPlugins; [
|
|
];
|
|
};
|
|
}
|