diff options
Diffstat (limited to 'user/modules')
-rw-r--r-- | user/modules/zsh.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/user/modules/zsh.nix b/user/modules/zsh.nix index 28e82293..be545635 100644 --- a/user/modules/zsh.nix +++ b/user/modules/zsh.nix @@ -5,6 +5,14 @@ ".rm_recycle_home".text = ""; # use trash automatically in home directory ".zshenv".text = builtins.readFile ../zsh/.zshenv; }; + home.packages = with pkgs; [ + fzf + ghq + ] ++ (if stdenv.isDarwin + then [] + else [ + pkgs.git + ]); xdg.configFile.zsh = { recursive = true; source = ../zsh/.config/zsh; |