1# Avery's dotfiles 2My dotfiles, organized using chezmoi. 3 4# Installation 51. Install Homebrew and chezmoi 6```fish 7/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 8eval (/home/linuxbrew/.linuxbrew/bin/brew shellenv) 9brew install chezmoi 10``` 11 122. Create the chezmoi config at `~/.config/chezmoi/chezmoi.toml` 13```toml 14[data] 15machineType = "personal|work" 16 17[data.git] 18name = "" 19email = "" 20sshSigningKeyOpId = "" 21 22[data.restic.chert] 23baseOpId = "" 24 25[data.restic.pulsar] 26baseOpId = "" 27 28[data.restic.slate] 29baseOpId = "" 30``` 31 323. Initialize the repository 33```sh 34chezmoi init https://tangled.sh/@bladee.bsky.social/dotfiles 35fish -c "chezmoi apply" 36fish -c "chezmoi apply" 37```