added zsh
This commit is contained in:
23
home-manager/zsh.nix
Normal file
23
home-manager/zsh.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{ 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";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user