blob: cc2e6d5fbaceaed66bd292a9eae45ac8b5348cee [file] [log] [blame]
Skyler Grey1e2187f2023-03-03 22:45:10 +00001{ pkgs, ... }: {
2 users.defaultUserShell = pkgs.zsh;
3
4 programs.zsh = {
5 enable = true;
6 ohMyZsh = [ "zsh-syntax-highlighting" "git" "git-auto-fetch" "gh" ];
7 autosuggestions = {
8 enable = true;
9 async = true;
10 };
11 syntaxHighlighting.enable = true;
12 };
13}