nixos-configuration/homeConfigurations/muede/zsh.nix
2026-09-11 22:58:17 +02:00

27 lines
638 B
Nix

{ config, pkgs, ... }:
{
config.programs.zsh = {
initContent = ''
export PATH=$PATH:$HOME/.cargo/bin
bindkey "^[[1;5C" forward-word
bindkey "^[[1;5D" backward-word
'';
enableCompletion = true;
shellAliases = {
s = "nix-shell -p";
my-direnvallow = "echo \"use nix\" > .envrc && direnv allow";
my-ip4 = "ip addr show | grep 192";
deadnix = "nix run github:astro/deadnix -- ";
statix = "nix run github:oppiliappan/statix -- ";
};
history = {
size = 10000;
path = "${config.xdg.dataHome}/zsh/history";
expireDuplicatesFirst = true;
};
};
}