Merge remote-tracking branch 'origin/master'
1 file changed, 7 insertions(+), 2 deletions(-)
changed files
M modules/programs/dotfiles.nix → modules/programs/dotfiles.nix
@@ -1,9 +1,14 @@ { config, pkgs, ... }: { environment.systemPackages = with pkgs; [ - git stow fzf ghq - ]; + ] ++ ( + if stdenv.isDarwin + then [ + ] else [ + git + ] + ); }