sys-config/homeManagerModules/zsh.nix
2024-06-22 13:44:00 +02:00

16 lines
273 B
Nix

{ ... }: {
#todo config
programs.zsh = {
enable = true;
completionInit.enable = true;
syntaxHighlighting.enable = true;
oh-my-zsh = {
enable = true;
plugins = [
"systemd"
"bun"
"common-aliases"
];
};
};
}