sys-config/homeManagerModules/zsh.nix
2024-08-18 09:32:28 +02:00

15 lines
239 B
Nix

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