diff --git a/home/zsh/default.nix b/home/zsh/default.nix index 7e60f94..4d11eef 100644 --- a/home/zsh/default.nix +++ b/home/zsh/default.nix @@ -6,5 +6,12 @@ enableAutosuggestions = true; enableCompletion = true; syntaxHighlighting.enable = true; + shellAliases = { + nrebuild = "sudo nixos-rebuild switch --flake /home/${user}/nixos#prismo"; + }; + initExtra = '' + bindkey -v + bindkey '^R' history-incremental-search-backward + ''; }; }