all repos — nixfiles @ c918534796c695c42824d7f34f8f442b8e0e17cc

System and user configuration, managed by nix and home-manager

Move dotfile-related packages to home-manager

Alan Pearce
commit

c918534796c695c42824d7f34f8f442b8e0e17cc

parent

8a52c1acb46ba99584ee4cc7c83161d972718a59

1 file changed, 8 insertions(+), 0 deletions(-)

changed files
M user/modules/zsh.nixuser/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;