nixfiles/home/base/zsh.nix
ChaotiCryptidz 16ed09469a Add zsh!
2021-12-21 00:07:05 +00:00

11 lines
148 B
Nix

{ ... }: {
programs.zsh = {
enable = true;
oh-my-zsh = {
enable = true;
theme = "afowler";
plugins = [ ];
};
};
}