diff --git a/home-manager/modules/shell.nix b/home-manager/modules/shell.nix index f26ca85..901efa8 100644 --- a/home-manager/modules/shell.nix +++ b/home-manager/modules/shell.nix @@ -3,7 +3,7 @@ # But we all know I love zsh programs.zsh = { enable = true; - enableAutosuggestions = true; + autosuggestions.enable = true; enableCompletion = true; history.path = "${config.xdg.dataHome}/zsh/history"; dotDir = ".config/zsh"; @@ -53,7 +53,7 @@ # Eza settings programs.eza = { enable = true; - enableAliases = true; + enableZshIntegration = true; git = true; icons = true; };