summary refs log tree commit diff stats
path: root/user/settings
diff options
context:
space:
mode:
authorAlan Pearce2019-10-21 21:40:58 +0200
committerAlan Pearce2019-10-21 21:40:58 +0200
commit05ccf28d742b0b12360e833ecf3254ecd7c60b94 (patch)
tree8001c66ddb1586ddb3ac33e66de74642fc688cd1 /user/settings
parenta1e20efae5d76ea43e4479cef0291047d71a0fbd (diff)
downloadnixfiles-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.nix8
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;