23 lines
408 B
Nix
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";
|
|
};
|
|
};
|
|
} |