1{pkgs, ...}: {
2 users.defaultUserShell = pkgs.zsh;
3 programs.zsh = {
4 enable = true;
5 histSize = 50000;
6
7 # plugins
8 syntaxHighlighting.enable = true;
9 autosuggestions = {
10 enable = true;
11 };
12
13 ohMyZsh = {
14 enable = true;
15 plugins = [
16 "git"
17 ];
18 };
19 };
20
21 programs.starship = {
22 enable = true;
23 settings = builtins.fromTOML (builtins.readFile ./starship.toml);
24 };
25}