19 lines
316 B
Nix
19 lines
316 B
Nix
{pkgs, ...}: {
|
|
programs.zsh = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
autosuggestions.enable = true;
|
|
syntaxHighlighting.enable = true;
|
|
|
|
ohMyZsh = {
|
|
enable = true;
|
|
plugins = [
|
|
"git"
|
|
];
|
|
theme = "robbyrussell";
|
|
};
|
|
};
|
|
|
|
users.defaultUserShell = pkgs.zsh;
|
|
}
|