all repos — archive/nixos-configuration @ ccb69f84f6123011a176a42e0e1c50ae822d3c58

Superseded by nixfiles

Merge remote-tracking branch 'origin/master'

Alan Pearce
commit

ccb69f84f6123011a176a42e0e1c50ae822d3c58

parent

8003056612155a356e50829b998a0436c3d0f3a5

1 file changed, 7 insertions(+), 2 deletions(-)

changed files
M modules/programs/dotfiles.nixmodules/programs/dotfiles.nix
@@ -1,9 +1,14 @@
{ config, pkgs, ... }: { environment.systemPackages = with pkgs; [ - git stow fzf ghq - ]; + ] ++ ( + if stdenv.isDarwin + then [ + ] else [ + git + ] + ); }