all repos — nixfiles @ 05ccf28d742b0b12360e833ecf3254ecd7c60b94

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

zsh: install git and -lfs, even on darwin
Alan Pearce alan@alanpearce.eu
Mon, 21 Oct 2019 21:40:58 +0200
commit

05ccf28d742b0b12360e833ecf3254ecd7c60b94

parent

a1e20efae5d76ea43e4479cef0291047d71a0fbd

1 files changed, 3 insertions(+), 5 deletions(-)

jump to
M user/settings/zsh.nixuser/settings/zsh.nix
@@ -12,12 +12,10 @@ };   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;