21 lines
478 B
Markdown
21 lines
478 B
Markdown
# Dotfiles
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
pacman -S ansible-tools
|
|
ansible-galaxy install -r requirements.yml
|
|
ansible-playbook playbook.yml --ask-become-pass
|
|
```
|
|
|
|
- Install nerdfont -- TODO
|
|
|
|
## zsh
|
|
|
|
Machine specific settings can be added in `./zsh/hosts/` and will be sourced for via the environment variable `$MACHINE_TYPE`, export `$MACHINE_TYPE` via `/etc/zprofile` (or another local only file, e.g. ``~/.zprofile`.
|
|
|
|
```bash
|
|
> sudo echo "MACHINE_TYPE=<name>" >> /etc/zprofile
|
|
```
|
|
|