65 lines
1.5 KiB
Nix
65 lines
1.5 KiB
Nix
{ profile
|
|
, pkgs
|
|
, lib
|
|
, ...
|
|
}: {
|
|
imports = [
|
|
./zshrc-personal.nix
|
|
];
|
|
|
|
programs.zsh = {
|
|
enable = true;
|
|
autosuggestion.enable = true;
|
|
syntaxHighlighting = {
|
|
enable = true;
|
|
highlighters = [ "main" "brackets" "pattern" "regexp" "root" "line" ];
|
|
};
|
|
historySubstringSearch.enable = true;
|
|
|
|
history = {
|
|
ignoreDups = true;
|
|
save = 10000;
|
|
size = 10000;
|
|
};
|
|
|
|
oh-my-zsh = {
|
|
enable = true;
|
|
};
|
|
|
|
plugins = [
|
|
{
|
|
name = "powerlevel10k";
|
|
src = pkgs.zsh-powerlevel10k;
|
|
file = "share/zsh-powerlevel10k/powerlevel10k.zsh-theme";
|
|
}
|
|
{
|
|
name = "powerlevel10k-config";
|
|
src = lib.cleanSource ./p10k-config;
|
|
file = "p10k.zsh";
|
|
}
|
|
];
|
|
|
|
initContent = ''
|
|
bindkey "\eh" backward-word
|
|
bindkey "\ej" down-line-or-history
|
|
bindkey "\ek" up-line-or-history
|
|
bindkey "\el" forward-word
|
|
if [ -f $HOME/.zshrc-personal ]; then
|
|
source $HOME/.zshrc-personal
|
|
fi
|
|
'';
|
|
|
|
shellAliases = {
|
|
sv = "sudo nvim";
|
|
v = "nvim";
|
|
c = "clear";
|
|
fr = "nh os switch --hostname ${profile}";
|
|
fu = "nh os switch --hostname ${profile} --update";
|
|
zu = "sh <(curl -L https://gitlab.com/Zaney/zaneyos/-/releases/latest/download/install-zaneyos.sh)";
|
|
ncg = "nix-collect-garbage --delete-old && sudo nix-collect-garbage -d && sudo /run/current-system/bin/switch-to-configuration boot";
|
|
cat = "bat";
|
|
man = "batman";
|
|
};
|
|
};
|
|
}
|