{pkgs, ...}: { programs.zsh = { enable = true; syntaxHighlighting.enable = true; enableCompletion = true; autosuggestion.enable = true; dotDir = ".config/zsh"; history.size = 1000000; history.path = ".config/zsh/history"; shellAliases = { cn = "cd ~/nix"; ls = "${pkgs.eza}/bin/eza --icons -a --group-directories-first"; v = "hx"; cat = "bat"; lg = "${pkgs.lazygit}/bin/lazygit"; ser = "ssh root@joygnu.org"; ip = "sh ~/nix/modules/programs/zsh/scripts/ip.sh"; rb = "sh ~/nix/modules/programs/zsh/scripts/rebuild.sh"; fr = "doas systemctl reboot --firmware"; up = "nix flake update --flake ~/nix/"; del = "doas nix-collect-garbage -d"; dn = "dotnet new console"; dr = "dotnet run"; }; oh-my-zsh = { enable = true; plugins = ["git" "history-substring-search"]; theme = "simple"; }; }; }