diff options
Diffstat (limited to 'modules/home/zsh.nix')
| -rw-r--r-- | modules/home/zsh.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/home/zsh.nix b/modules/home/zsh.nix new file mode 100644 index 0000000..7d72dba --- /dev/null +++ b/modules/home/zsh.nix @@ -0,0 +1,17 @@ +{ pkgs, ... }: + +{ + programs.zsh = { + enable = true; + + shellAliases = { + lsa = "ls -lAsh"; + }; + + oh-my-zsh = { + enable = true; + plugins = [ "git" "systemd" ]; + #theme = "powerlevel10k"; + }; + }; +} |