blob: 7d72dba5d56ec39be91e8e00da80230a9d16624c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ pkgs, ... }:
{
programs.zsh = {
enable = true;
shellAliases = {
lsa = "ls -lAsh";
};
oh-my-zsh = {
enable = true;
plugins = [ "git" "systemd" ];
#theme = "powerlevel10k";
};
};
}
|