No description
Find a file
2023-08-18 06:55:39 -04:00
data helix rust env 2023-06-06 18:41:50 -04:00
home colima base memory bump 2023-08-18 06:55:39 -04:00
.chezmoiroot chezmoiroot 2023-01-25 22:25:19 -07:00
.gitignore IMP: vscode-specific project structuring (#6) 2020-05-12 14:32:17 -07:00
README.md fixing hostname typos 2023-08-14 07:26:21 -04:00

dotfiles

hostnames

  • rattusrattus: macbook
  • yersiniapestis: wsl (debian)
  • devterm: devterm (debian)

steps

  1. set the fqdn (this is necessary for some of the host-specific chezmoi config):
# debian standalone
sudo hostnamectl set-hostname $MY_HOSTNAME.local

# debian wsl
echo "[network]\nhostname = $MY_HOSTNAME" | sudo tee -a /etc/wsl.conf

# macos
sudo scutil --set HostName $MY_HOSTNAME.local
sudo scutil --set LocalHostName $MY_HOSTNAME
sudo scutil --set ComputerName $MY_HOSTNAME
dscacheutil -flushcache  # maybe reboot, too?
  1. set up the package manager and bootstrap dependencies:
# debian
sudo apt update
sudo apt install curl zsh git

# macos
xcode-select --install
# download the pkg installer from: https://www.macports.org
# TODO: is there a reasonable unattended install workflow for macports?
  1. set the initial shell:
# debian
chsh -s $(which zsh)

# macos
# NA
  1. install a patched font, Anonymice Pro.
  • wsl: size 11
  • macos: size 16 or 17, no anti-aliasing
  1. install age private key from password manager into ~/.key.txt

  2. bootstrap chezmoi:

sh -c "$(curl -fsLS get.chezmoi.io)" -- \
  init \
  git://pingo.thermokar.st/dotfiles \
  --apply \
  --guess-repo-url=false
  1. set the new shell (in case installing from 3rd-party package manager):
# debian
# NA

# macos
sudo chpass -s '/opt/local/bin/zsh' $USER
  1. install miniconda:
# debian
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh

# macos
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-arm64.sh -O miniconda.sh

# then, for either os:
chmod +x miniconda.sh
sudo ./miniconda.sh -b -u -p /opt/miniconda3
  1. set up non-automated software and tools:
  • steermouse (license in email): btn4==fwd, btn5==bck
  • logitech control center
  • lunar
  • magnet
  • rust (don't use a package manager for this)
    • rust-analyzer (rustup component add rust-analyzer)
  • gwar (git clone ssh://git@pingo.thermokar.st/gwar && cd gwar && cargo build --release && cp target/release/gwar ~/bin)