Files
ad-nix/home-manager/zsh.nix
John Lancaster 1c9f2b54df added zsh
2025-04-03 23:56:48 -05:00

23 lines
407 B
Nix

{ config, pkgs, ... }:
{
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 -l";
};
};
}