nixos/home/zsh/default.nix

18 lines
433 B
Nix
Raw Normal View History

2024-02-27 09:09:03 +00:00
{ user, pkgs, ...}: {
home.packages = with pkgs; [ fd ];
programs.zsh = {
enable = true;
autocd = false;
enableAutosuggestions = true;
enableCompletion = true;
syntaxHighlighting.enable = true;
2024-02-27 20:59:29 +00:00
shellAliases = {
nrebuild = "sudo nixos-rebuild switch --flake /home/${user}/nixos#prismo";
};
initExtra = ''
bindkey -v
bindkey '^R' history-incremental-search-backward
'';
2024-02-27 09:09:03 +00:00
};
}