Files
nixconf/home/cfg/zsh.nix
T
2026-03-12 07:17:02 -06:00

17 lines
282 B
Nix

{
programs.zsh = {
enable = true;
enableCompletion = true;
enableVteIntegration = true;
autocd = true;
autosuggestion.enable = true;
oh-my-zsh = {
enable = true;
plugins = [
"git" "sudo"
];
theme = "agnoster";
};
};
}