diff --git a/apps/fish/home.nix b/apps/fish/home.nix new file mode 100644 index 0000000..d87ec4f --- /dev/null +++ b/apps/fish/home.nix @@ -0,0 +1,19 @@ +{ + pkgs, + myConfig, + ... +}: { + programs.fish = { + enable = true; + interactiveShellInit = '' + set fish_greeting + fish_vi_key_bindings + zoxide init fish | source + + ''; + # shellAliases = myConfig.general.Terminal.aliases; + + plugins = with pkgs.fishPlugins; [ + ]; + }; +} diff --git a/modules/home/terminal.nix b/modules/home/terminal.nix index 741acc7..a361a0f 100644 --- a/modules/home/terminal.nix +++ b/modules/home/terminal.nix @@ -3,5 +3,6 @@ ../../apps/neovim/neovim.nix ../../apps/git/home.nix ../../apps/zoxide/home.nix + ../../apps/fish/home.nix ]; }