34 lines
773 B
Nix
34 lines
773 B
Nix
{config, ...}: {
|
|
programs.zsh = {
|
|
enable = true;
|
|
dotDir = ".config/zsh";
|
|
enableCompletion = true;
|
|
autosuggestion.enable = true;
|
|
syntaxHighlighting.enable = true;
|
|
|
|
shellAliases = {
|
|
nixconfig = "cd /home/cnst/.nix-config/";
|
|
ll = "ls -l";
|
|
nixupdate = "sudo nixos-rebuild switch -v --show-trace --flake .#cnix";
|
|
flakeupdate = "nix flake update";
|
|
};
|
|
history = {
|
|
size = 1000;
|
|
path = "${config.xdg.dataHome}/zsh/history";
|
|
};
|
|
oh-my-zsh = {
|
|
enable = true;
|
|
plugins = [
|
|
"git"
|
|
"thefuck"
|
|
];
|
|
theme = "robbyrussell";
|
|
};
|
|
initExtra = ''
|
|
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=241'
|
|
eval $(thefuck --alias)
|
|
eval $(thefuck --alias FUCK)
|
|
'';
|
|
};
|
|
}
|