diff --git a/home/modules/shell.nix b/home/modules/shell.nix index 067f91e..b5eebd5 100644 --- a/home/modules/shell.nix +++ b/home/modules/shell.nix @@ -7,6 +7,8 @@ }: let + repoDir = "${config.home.homeDirectory}/.config/nix"; + ripgrep = config.programs.ripgrep.enable; claude = true; @@ -191,6 +193,11 @@ in } ''; + documentation = { + enable = true; + man.enable = true; + }; + programs.zsh = { enable = true; dotDir = "${config.xdg.configHome}/zsh"; @@ -267,11 +274,6 @@ in enableZshIntegration = true; }; - documentation = { - enable = true; - man.enable = true; - }; - programs.direnv = { enable = true; enableZshIntegration = true; @@ -358,5 +360,4 @@ in config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/.config/nix/config/tmux/themes/midnight.conf"; xdg.configFile."tmux/themes/daylight.conf".source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/.config/nix/config/tmux/themes/daylight.conf"; - }