darwin/core: install more recent version of macos's cli tools

This commit is contained in:
Guanran Wang 2024-02-26 13:53:04 +08:00
parent a6c0afbf24
commit 1a05487329
Signed by: nyancat
SSH key fingerprint: SHA256:8oWGKciPALWut/6WA27oFKofX+6Wtc0gQnsefXLQx/8

View file

@ -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
];
}