nixfiles/home/base/zsh.nix

11 lines
146 B
Nix
Raw Normal View History

2021-12-21 00:07:05 +00:00
{ ... }: {
programs.zsh = {
enable = true;
ohMyZsh = {
2021-12-21 00:07:05 +00:00
enable = true;
theme = "afowler";
plugins = [ ];
};
};
}