all repos — nixfiles @ 086e0f60c01730cacd716f14115bef99774f6957

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

Setup trillian (MacBook)

Alan Pearce
commit

086e0f60c01730cacd716f14115bef99774f6957

parent

e30c6624e41d8b8b55085897a57f9c9c0c6c3edf

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 + ] + ); }