sys-config/homeManagerModules/zsh.nix
2024-06-11 23:59:03 +02:00

16 lines
No EOL
272 B
Nix

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