nixos-config/common/programs/zsh.nix

19 lines
316 B
Nix
Raw Normal View History

2024-04-17 22:28:27 +02:00
{pkgs, ...}: {
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestions.enable = true;
syntaxHighlighting.enable = true;
ohMyZsh = {
enable = true;
plugins = [
"git"
];
theme = "robbyrussell";
};
};
2024-05-06 13:10:44 +02:00
2024-04-17 22:28:27 +02:00
users.defaultUserShell = pkgs.zsh;
}