diff --git a/README.md b/README.md index 443a3ce..852a0a6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # dotfiles -set the fqdn (this is necessary for some of the host-specific chezmoi config): +1) set the fqdn (this is necessary for some of the host-specific chezmoi config): ```bash # debian @@ -13,7 +13,7 @@ sudo scutil --set ComputerName $MY_HOSTNAME dscacheutil -flushcache # maybe reboot, too? ``` -set the shell: +2) set the shell: ```bash # debian @@ -23,16 +23,20 @@ chsh -s $(which zsh) sudo chpass -s '/opt/local/bin/zsh' $USER ``` -set up the package manager: +3) set up the package manager: ```bash +# debian - nothing to do here + +# macos xcode-select --install -# grab the pkg installer from: https://www.macports.org/install.php +# download the pkg installer from: https://www.macports.org +# TODO: is there a reasonable unattended install workflow for macports? ``` -patched font, [Anonymice Pro](https://www.nerdfonts.com/font-downloads) +4) install a patched font, [Anonymice Pro](https://www.nerdfonts.com/font-downloads). size 16 or 17, no anti-aliasing -bootstrap chezmoi: +5) bootstrap chezmoi: ```bash sh -c "$(curl -fsLS get.chezmoi.io)" -- \ @@ -41,3 +45,11 @@ sh -c "$(curl -fsLS get.chezmoi.io)" -- \ --apply \ --guess-repo-url=false ``` + +6) install miniconda: + +```bash +wget https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-arm64.sh +chmod +x Miniconda3-latest-MacOSX-arm64.sh +sudo ./Miniconda3-latest-MacOSX-arm64.sh -b -u -p /opt/miniconda3 +``` diff --git a/home/run_once_install-packages.sh.tmpl b/home/run_once_install-packages.sh.tmpl index 88c2289..8c7a8c7 100644 --- a/home/run_once_install-packages.sh.tmpl +++ b/home/run_once_install-packages.sh.tmpl @@ -9,10 +9,10 @@ sudo apt install \ ripgrep \ tmux \ tree \ + wget \ zsh \ -y -{{ end }} -{{ if eq .chezmoi.hostname "rattusrattus" -}} +{{ else if eq .chezmoi.os "darwin" -}} #!/bin/sh sudo port install \ git \ @@ -20,6 +20,7 @@ sudo port install \ ripgrep \ tmux \ tree \ + wget \ zellij \ zsh {{ end }}