nix/hosts/phone/home/zsh/default.nix
2024-10-04 18:30:45 +02:00

21 lines
483 B
Nix

{
programs.zsh = {
enable = true;
enableCompletion = true;
syntaxHighlighting.enable = true;
historySubstringSearch.enable = true;
dotDir = ".config/zsh";
initExtra = "PROMPT='%F{green}%~%f '";
shellAliases = {
v = "hx";
ser = "ssh root@joygnu.org";
rb = "nix-on-droid switch --flake ~/nix";
ep = "hx ~/.config/nix-on-droid/nix-on-droid.nix";
};
history.size = 1000000;
history.path = ".config/zsh/history";
};
}