nix/modules/apps/home/zsh/default.nix

31 lines
914 B
Nix
Raw Normal View History

2024-08-31 16:04:57 +02:00
{pkgs, ...}: {
2024-10-04 22:32:42 +02:00
programs.zsh = {
2024-08-31 16:04:57 +02:00
enable = true;
syntaxHighlighting.enable = true;
enableCompletion = true;
2024-10-04 22:41:36 +02:00
# autosuggestion.enable = true;
2024-08-31 16:04:57 +02:00
historySubstringSearch.enable = true;
dotDir = ".config/zsh";
initExtra = "PROMPT='%F{green}%~%f '";
shellAliases = {
v = "hx";
cat = "bat";
cn = "cd ~/nix";
ls = "${pkgs.eza}/bin/eza --icons -a --group-directories-first";
2024-10-04 22:19:16 +02:00
pu = "sh ~/nix/modules/apps/home/zsh/scripts/push.sh";
ip = "sh ~/nix/modules/apps/home/zsh/scripts/ip.sh";
rb = "sh ~/nix/modules/apps/home/zsh/scripts/rebuild.sh";
2024-08-31 16:04:57 +02:00
fr = "sudo systemctl reboot --firmware";
ser = "ssh root@joygnu.org";
up = "sudo nix flake update ~/nix";
del = "sudo nix-collect-garbage -d";
2024-09-19 10:10:40 +02:00
dn = "dotnet new console";
2024-09-18 11:15:01 +02:00
dr = "dotnet run";
2024-08-31 16:04:57 +02:00
};
history.size = 1000000;
history.path = ".config/zsh/history";
};
}