11 lines
148 B
Nix
11 lines
148 B
Nix
|
{ ... }: {
|
||
|
programs.zsh = {
|
||
|
enable = true;
|
||
|
oh-my-zsh = {
|
||
|
enable = true;
|
||
|
theme = "afowler";
|
||
|
plugins = [ ];
|
||
|
};
|
||
|
};
|
||
|
}
|