From 1a05487329a7a48a35ee6db769d766f66fd47be7 Mon Sep 17 00:00:00 2001 From: Guanran Wang Date: Mon, 26 Feb 2024 13:53:04 +0800 Subject: [PATCH] darwin/core: install more recent version of macos's cli tools --- darwin/profiles/common/core/default.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/darwin/profiles/common/core/default.nix b/darwin/profiles/common/core/default.nix index 0b4a08c..237bed7 100644 --- a/darwin/profiles/common/core/default.nix +++ b/darwin/profiles/common/core/default.nix @@ -48,4 +48,19 @@ fish_add_path --move --prepend --path ${lib.concatMapStringsSep " " dquote (makeBinPathList config.environment.profiles)} set fish_user_paths $fish_user_paths ''; + + # Install more recent versions of some macOS tools. + # https://github.com/mathiasbynens/dotfiles/blob/master/brew.sh + environment.systemPackages = with pkgs; [ + bashInteractive + coreutils + findutils + git + gnugrep + gnused + openssh + screen + tree + vim + ]; }