Files
ad-nix/home-manager/zsh.nix
John Lancaster e73e22d0b5 fixes for zsh
2025-04-04 00:08:52 -05:00

23 lines
408 B
Nix

{ userSettings, ... }:
{
programs.zsh = {
enable = true;
oh-my-zsh = {
enable = true;
# https://github.com/ohmyzsh/ohmyzsh/wiki/themes
# theme = "robbyrussell";
# theme = "simple";
theme = "risto";
plugins = [
"sudo"
"dotenv"
"git"
"ssh"
"ssh-agent"
];
};
shellAliases = {
ls = "eza -lg";
};
};
}