1
0
Fork 0
mirror of https://github.com/eoli3n/dotfiles synced 2024-05-12 10:36:06 +02:00
eoli3n-dotfiles/README.md
2020-05-14 00:23:03 +02:00

2.4 KiB

Sway Acid Dark

Build Status

Sway fish pure waybar neovim

alt tag

Tiny irc client

alt tag

Firefox/Tabliss Wofi

alt tag

Connman/Thunar GTK Theme

alt tag

Why Ansible ?

  • Modularity: Roles as modules.
  • Factorization: It uses jinja2 templating engine.
  • Simplicity: No agent, only SSH, available via pip.
  • Flexibility: Push your dotfiles from/to any hosts.
  • Toolbox: Dry-run mode, diff mode, secrets encryption, tags...

How to

Use carefully, backup your home before using !
You should use --check to dry-run and --diff first.

Check details in roles/*/README.md.

1. Fork Me!
2. Clone your repo

Use recursive mode to get aur ansible module for Archlinux.

git clone --recursive https://github.com/*/dotfiles
3. Configure inventory

Create inventory file from template.

cd dotfiles
cp hosts.template hosts

Add your hostnames in section:

  • cli: install only cli tools
  • desktop: install desktop environment

Define which user will get configurations with ansible_user var.
Users needs to be sudoers.
desktop hosts can't use root.

a. localhost run
[desktop]
localhost ansible_connection=local ansible_user=user
b. multiple hosts run
[cli]
server1 ansible_user=root
[desktop]
host1 ansible_user=user
host2 ansible_user=user2
4. Configure SSH

Push your SSH public key on all your users@hosts

ssh-copy-id -i path/to/ssh/key.pub user@host
5. (Dry)Run
ansible-playbook install.yml -CD
ansible-playbook install.yml

To configure cli tools for root on desktop hosts

ansible-playbook install.yml -b -K

Previously