Compare commits

..

1 Commits

Author SHA1 Message Date
Steffen70 f6bfba2cff
Merge cdf6ceed4b into 326053dd61 2024-06-12 16:55:12 +00:00
3 changed files with 2 additions and 4 deletions

View File

@ -2,7 +2,7 @@
MY_OPTIONS="+ssse3,+sse4.2,+popcnt,+avx,+aes,+xsave,+xsaveopt,check" MY_OPTIONS="+ssse3,+sse4.2,+popcnt,+avx,+aes,+xsave,+xsaveopt,check"
ALLOCATED_RAM="8192" # MiB ALLOCATED_RAM="12288" # MiB
CPU_SOCKETS="1" CPU_SOCKETS="1"
CPU_CORES="2" CPU_CORES="2"
CPU_THREADS="4" CPU_THREADS="4"

View File

@ -23,7 +23,7 @@ MY_OPTIONS="+ssse3,+sse4.2,+popcnt,+avx,+aes,+xsave,+xsaveopt,check"
# This script works for Big Sur, Catalina, Mojave, and High Sierra. Tested with # This script works for Big Sur, Catalina, Mojave, and High Sierra. Tested with
# macOS 10.15.6, macOS 10.14.6, and macOS 10.13.6. # macOS 10.15.6, macOS 10.14.6, and macOS 10.13.6.
ALLOCATED_RAM="8192" # MiB ALLOCATED_RAM="12288" # MiB
CPU_SOCKETS="1" CPU_SOCKETS="1"
CPU_CORES="2" CPU_CORES="2"
CPU_THREADS="4" CPU_THREADS="4"

View File

@ -99,8 +99,6 @@ sudo shutdown -h now
## Additional Notes ## Additional Notes
When you use the VSCode Remote SSH extension, you will disconnect from the VM as soon as the VM enters sleep mode. To prevent this, you can enable automatic login and disable lock screen in the macOS settings. This way, the user will be logged in automatically when the VM starts and won't enter sleep mode.
I personally use Nix flakes to manage the environment, so I can install all the required tools with `nix develop` and run the scripts from there. (The Nix package manager does not support XCode, so you need to install it manually first.) I personally use Nix flakes to manage the environment, so I can install all the required tools with `nix develop` and run the scripts from there. (The Nix package manager does not support XCode, so you need to install it manually first.)
Additionally, I use GitHub to store my credentials, which allows me to just copy the `.gitconfig` and `.git-credentials` to the user home directory on the VM. Additionally, I use GitHub to store my credentials, which allows me to just copy the `.gitconfig` and `.git-credentials` to the user home directory on the VM.