dotfiles/POSTINSTALL.md

21 lines
449 B
Markdown
Raw Normal View History

2019-10-03 11:31:16 +02:00
# Essential Packages
```bash
2019-12-10 00:06:53 +01:00
apt install git zsh inotify-tools borgbackup
2019-10-03 11:31:16 +02:00
```
2019-12-10 09:10:31 +01:00
# Increase Inotify watchers
See: https://github.com/guard/listen/wiki/Increasing-the-amount-of-inotify-watchers
```
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
```
2019-10-03 11:31:16 +02:00
# Setup SSH
2019-12-10 09:10:31 +01:00
See: https://wiki.archlinux.org/index.php/SSH_keys#Ed25519
2019-10-03 11:31:16 +02:00
```
ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_ed25519 -C "johnnie@posteo.de"
```