switch back from fish to zsh

This commit is contained in:
notgne2 2022-11-06 17:42:23 -07:00
parent 742ce27e01
commit 33dba4a0fe
No known key found for this signature in database
6 changed files with 4 additions and 37 deletions

View file

@ -8,6 +8,7 @@ inputs: {
programs.direnv = {
enable = lib.mkDefault true;
enableZshIntegration = true;
nix-direnv.enable = lib.mkDefault true;
stdlib = ''
: ''${XDG_CACHE_HOME:=$HOME/.cache}
@ -52,7 +53,6 @@ inputs: {
ripgrep
lsd
# for fish-done
libnotify
notify-desktop
];
@ -64,7 +64,7 @@ inputs: {
};
};
programs.fish = {
programs.zsh = {
enable = true;
shellAliases = {
ls = "lsd";
@ -73,19 +73,6 @@ inputs: {
lla = "ls -la";
lt = "ls --tree";
};
plugins = [
{
name = "done";
src = inputs.done;
}
];
interactiveShellInit = ''
set -U __done_min_cmd_duration 4000
set -U fish_key_bindings fish_default_key_bindings
eval (${pkgs.direnv}/bin/direnv hook fish)
'';
};
programs.firefox = {