2024-07-31 00:51:24 +02:00
|
|
|
{ pkgs, lib, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
system.activationScripts.postUserActivation.text =
|
|
|
|
''
|
|
|
|
echo "setting up fake Homebrew binaries..."
|
|
|
|
|
|
|
|
current_user="$USER"
|
|
|
|
sudo -H mkdir -p /opt/homebrew/bin
|
2024-11-08 23:01:20 +01:00
|
|
|
sudo -H chown "$current_user:staff" /opt/homebrew/bin
|
2024-07-31 00:51:24 +02:00
|
|
|
|
|
|
|
sudo -H -u "$current_user" ln -sfn ${lib.getExe pkgs.python3} /opt/homebrew/bin/python3
|
|
|
|
'';
|
|
|
|
}
|