nixfiles/home/base/zsh.nix
2021-12-26 13:29:24 +00:00

11 lines
146 B
Nix

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