nix/home/zsh/default.nix
2024-07-15 23:46:53 +02:00

38 lines
1.1 KiB
Nix

{ config, ...} :
{
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
historySubstringSearch.enable = true;
initExtra = "PROMPT='%F{green}%~%f '";
shellAliases = {
v = "nvim";
pu = "bash ~/nix/home/zsh/push.sh";
fr = "sudo systemctl reboot --firmware";
ser = "ssh root@joygnu.org";
rb = "bash ~/nix/home/zsh/desktop-laptop.sh";
up = "sudo nix flake update ~/nix";
del = "sudo nix-collect-garbage -d";
hy = "nvim ~/nix/home/hyprland/default.nix";
zs = "nvim ~/nix/home/zsh/default.nix";
el = "nvim ~/nix/hosts/laptop/default.nix";
ef = "nvim ~/nix/flake.nix";
ed = "nvim ~/nix/hosts/desktop/default.nix";
eh = "nvim ~/nix/home/default.nix";
em = "nvim ~/nix/modules/misc/default.nix";
es = "nvim ~/nix/modules/stylix/default.nix";
ep = "nvim ~/nix/modules/packages/default.nix";
ev = "nvim ~/nix/home/neovim/default.nix";
};
history.size = 10000;
history.path = "${config.xdg.dataHome}/zsh/history";
};
}