{pkgs, ...}: { programs.zoxide.enable = true; programs.fish = { enable = true; interactiveShellInit = '' zoxide init fish | source fish_vi_key_bindings ''; shellAliases = { ll = "ls -l"; upd = "sudo nixos-rebuild switch --flake ~/Nixos/#biscuit"; hupd = "home-manager switch --flake ~/Nixos/#biscuit"; agu = "pkill gjs & ags run ~/Nixos/pkgs/ags/biscuit/app.ts &"; }; plugins = with pkgs.fishPlugins; [ ]; }; }