Files
nixos/modules/home-manager/zsh.nix
T
2026-02-28 14:12:26 +01:00

18 lines
270 B
Nix

{ config, pkgs, ... }:
{
programs.zsh = {
enable = true;
autosuggestion.enable = true;
initContent = "fastfetch\n";
shellAliases = {
".." = "z ..";
grep = "rg";
ll = "ls -alF";
la = "ls -A";
l = "ls -CF";
ls = "ls -hA -s --color";
};
};
}