diff options
author | Alan Pearce | 2019-10-04 21:40:13 +0200 |
---|---|---|
committer | Alan Pearce | 2019-10-04 21:40:13 +0200 |
commit | c918534796c695c42824d7f34f8f442b8e0e17cc (patch) | |
tree | b97bb30d7070b6629092ffb3709bbc9e94e15a51 /user/modules | |
parent | 8a52c1acb46ba99584ee4cc7c83161d972718a59 (diff) | |
download | nixfiles-c918534796c695c42824d7f34f8f442b8e0e17cc.tar.lz nixfiles-c918534796c695c42824d7f34f8f442b8e0e17cc.tar.zst nixfiles-c918534796c695c42824d7f34f8f442b8e0e17cc.zip |
Move dotfile-related packages to home-manager
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; |