blob: af8264cdca5b6be043e67904f0a3b36db2f8e35d (
plain) (
blame)
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
|
# dotfiles
My Arch Linux configuration, managed with [chezmoi](https://www.chezmoi.io/).
## Bootstrap on a fresh Arch install
On a minimal Arch system (only `base` installed), as the regular wheel
user:
```sh
curl -fsSL https://raw.githubusercontent.com/sommerfelddev/dotfiles/master/bootstrap.sh | sh
```
This installs prerequisites, enables `%wheel` in sudoers, builds
`paru-bin` from the AUR, clones this repo to `~/dotfiles`, runs
`just init`, and — on EFI systems missing an Arch boot entry —
launches `create-efi`.
## Setup on an existing system
```sh
chezmoi init --source ~/dotfiles
chezmoi apply -v
```
|