mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 13:22:13 +02:00
24 lines
472 B
Markdown
24 lines
472 B
Markdown
# laptop
|
|
|
|
Laptop configuration for Arch Linux
|
|
|
|
## Requirements
|
|
|
|
- [Arch](https://archlinux.org/)
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
# (as root) Install the necessary dependencies
|
|
pacman -S ansible git which sudo
|
|
|
|
# (as root) Allow the "sudo" group to issue sudo commands
|
|
sed -i 's/#\s*%sudo/%sudo/g' /etc/sudoers
|
|
usermod -aG sudo $USER
|
|
|
|
# as user
|
|
ansible-pull --url https://github.com/aminnairi/laptop.git --ask-become-pass
|
|
```
|
|
|
|
Where `$USER` is the username to allow sudo rights.
|