blob: 81c0ee28dd5cc96b4a0490f62e8195e261464b0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/zsh
# Who buys a Refurbished Mac Mini (M1, 2020) in 2022? (pre)
# miniminimini.local
#
# This is a Mac mini 9,1 (M1, 2020).
# Acquired in 2022.
#
# This is our primary desktop device. It's used for personal
# and development purposes, and in all situations where a good
# ol' big screen is best.
export DEVICE_HAS_GPG
export DEVICE_HAS_HOMEBREW
export DEVICE_HOMEBREW_INSTALLATION="/opt/homebrew"
export DEVICE_HAS_NVM
export DEVICE_NVM_INSTALLATION="$HOME/.nvm"
export DEVICE_HAS_PYENV
export DEVICE_PYENV_CONFIGURATION="$HOME/.pyenv"
export DEVICE_HAS_SUBLIME_TEXT
export DEVICE_SUBLIME_TEXT_INSTALLATION="$HOME/Applications/Development & Editors/Sublime Text.app"
|