37 lines
875 B
YAML
37 lines
875 B
YAML
---
|
|
- name: Install for arch
|
|
import_tasks: arch.yml
|
|
when: ansible_os_family == "Archlinux"
|
|
|
|
- name: Install for debian
|
|
import_tasks: debian.yml
|
|
when: ansible_os_family == "Debian"
|
|
|
|
- name: Clone dotfiles
|
|
ansible.builtin.git:
|
|
repo: "{{ user.config.giturl }}"
|
|
dest: "/home/{{ user.username }}/.dotfiles"
|
|
|
|
- name: user owns its dotfiles
|
|
ansible.builtin.file:
|
|
path: "/home/{{ user.username }}/.dotfiles"
|
|
owner: "{{ user.username }}"
|
|
|
|
- name: stow configs
|
|
ansible.builtin.command:
|
|
cmd: stow {{ item }}
|
|
chdir: "/home/{{ user.username }}/.dotfiles"
|
|
with_items: "{{ user.config.stowing }}"
|
|
|
|
- name: init neovim
|
|
import_tasks: neovim.yml
|
|
when: '"nvim" in user.config.stowing'
|
|
|
|
- name: init vim
|
|
import_tasks: vim.yml
|
|
when: '"vim" in user.config.stowing'
|
|
|
|
- name: init sway
|
|
import_tasks: sway.yml
|
|
when: '"sway" in user.config.stowing'
|