nixos-config/home/afoucaultc/packages/zsh.nix
2026-07-10 13:22:08 +02:00

16 lines
260 B
Nix

{ ... }:
{
programs.zsh = {
enable = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
oh-my-zsh = {
enable = true;
theme = "robbyrussell";
plugins = [
"git"
"sudo"
];
};
};
}