From c918534796c695c42824d7f34f8f442b8e0e17cc Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Fri, 4 Oct 2019 21:40:13 +0200 Subject: Move dotfile-related packages to home-manager --- user/modules/zsh.nix | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'user') 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; -- cgit 1.4.1