diff options
author | Alan Pearce | 2019-10-21 21:40:58 +0200 |
---|---|---|
committer | Alan Pearce | 2019-10-21 21:40:58 +0200 |
commit | 05ccf28d742b0b12360e833ecf3254ecd7c60b94 (patch) | |
tree | 8001c66ddb1586ddb3ac33e66de74642fc688cd1 /user/settings | |
parent | a1e20efae5d76ea43e4479cef0291047d71a0fbd (diff) | |
download | nixfiles-05ccf28d742b0b12360e833ecf3254ecd7c60b94.tar.lz nixfiles-05ccf28d742b0b12360e833ecf3254ecd7c60b94.tar.zst nixfiles-05ccf28d742b0b12360e833ecf3254ecd7c60b94.zip |
zsh: install git and -lfs, even on darwin
Diffstat (limited to 'user/settings')
-rw-r--r-- | user/settings/zsh.nix | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/user/settings/zsh.nix b/user/settings/zsh.nix index f5400f3e..e0027e08 100644 --- a/user/settings/zsh.nix +++ b/user/settings/zsh.nix @@ -12,12 +12,10 @@ in home.packages = with pkgs; [ fzf ghq + git + git-lfs zsh-completions - ] ++ (if stdenv.isDarwin - then [] - else [ - pkgs.git - ]); + ]; xdg.configFile.zsh = { recursive = true; source = ../zsh/.config/zsh; |