Add README

bladee.bsky.social 4331d288 e6264de1

verified
Changed files
+37 -1
+3 -1
.chezmoiignore
···
# Ignore bwrap-preset-renpy
private_dot_local/bin/executable_bwrap-preset-renpy
private_dot_local/private_share/nautilus/private_scripts/symlink_Run in Bubblewrap (Ren'Py)
-
{{ end -}}
···
# Ignore bwrap-preset-renpy
private_dot_local/bin/executable_bwrap-preset-renpy
private_dot_local/private_share/nautilus/private_scripts/symlink_Run in Bubblewrap (Ren'Py)
+
{{ end -}}
+
+
README.md
+34
README.md
···
···
+
# Avery's dotfiles
+
My dotfiles, organized using chezmoi.
+
+
# Installation
+
1. Install Homebrew and chezmoi
+
```fish
+
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
+
eval (/home/linuxbrew/.linuxbrew/bin/brew shellenv)
+
brew install chezmoi
+
```
+
+
2. Create the local chezmoi config at `~/.config/chezmoi/chezmoi.yaml`
+
```yaml
+
data:
+
machineType: "<personal|work>"
+
git:
+
name: "<your name>"
+
email: "<your email>"
+
sshSigningKeyOpId: "op://<vault>/<item>"
+
restic:
+
slate:
+
baseOpId: "op://<vault>/<item>"
+
pulsar:
+
baseOpId: "op://<vault>/<item>"
+
chert:
+
baseOpId: "op://<vault>/<item>"
+
```
+
+
3. Initialize the repository
+
```sh
+
chezmoi init https://tangled.sh/@bladee.bsky.social/dotfiles
+
chezmoi diff
+
chezmoi apply
+
```