Move dotfile-related packages to home-manager
1 file changed, 8 insertions(+), 0 deletions(-)
changed files
M user/modules/zsh.nix → user/modules/zsh.nix
@@ -5,6 +5,14 @@ home.file = { ".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;