nixos-config/common/programs/zsh.nix

22 lines
365 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;
shellAliases = {
ll = "ls -al";
};
ohMyZsh = {
enable = true;
plugins = [
"git"
];
theme = "robbyrussell";
};
};
users.defaultUserShell = pkgs.zsh;
}