diff --git a/modules/home.nix b/modules/home.nix index f51640e..496bb1d 100644 --- a/modules/home.nix +++ b/modules/home.nix @@ -7,38 +7,40 @@ }; home-manager.users.${myUser} = { - programs.starship = { - enable = true; - settings = { - add_newline = false; - aws.disabled = true; - gcloud.disabled = true; - line_break.disabled = true; + programs = { + dircolors.enable = true; + starship = { + enable = true; + settings = { + add_newline = false; + aws.disabled = true; + gcloud.disabled = true; + line_break.disabled = true; + }; }; - }; + zsh = { + enable = true; + autosuggestion.enable = true; + syntaxHighlighting.enable = true; + history = { + save = 10000; + ignoreSpace = true; + ignoreDups = true; + extended = true; + share = true; + path = "$HOME/.zsh_history"; + }; + shellAliases = { + ls = "ls --color=yes"; + la = "ls -a"; + ll = "ls -l"; + lla = "ls -la"; - programs.zsh = { - enable = true; - autosuggestion.enable = true; - syntaxHighlighting.enable = true; - history = { - save = 10000; - ignoreSpace = true; - ignoreDups = true; - extended = true; - share = true; - path = "$HOME/.zsh_history"; - }; - shellAliases = { - ls = "ls --color=yes"; - la = "ls -a"; - ll = "ls -l"; - lla = "ls -la"; - - vim = "nvim"; + vim = "nvim"; + }; }; }; home.stateVersion = config.system.stateVersion; }; -} \ No newline at end of file +}