nix-config/home/zsh.nix

41 lines
No EOL
635 B
Nix

{
programs.zsh = {
enable = true;
autocd = true;
shellAliases = {
os-update = "sudo nixos-rebuild switch --flake \".#$HOST\" --log-format internal-json -v |& nom --json";
};
autosuggestion = {
enable = true;
};
history = {
append = true;
expireDuplicatesFirst = true;
};
syntaxHighlighting = {
enable = true;
highlighters = [
"brackets"
];
};
oh-my-zsh = {
enable = true;
plugins = [
"git"
"sudo"
"virtualenv"
"safe-paste"
"timer"
];
theme = "agnoster";
};
};
}