nixfiles/home/base/zsh.nix
2021-12-26 14:07:09 +00:00

11 lines
148 B
Nix

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