summaryrefslogtreecommitdiff
path: root/config/tasks/main.yaml
blob: b1197c14e59cdd4c43be5183547cb20e548c468a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- name: Checkout dotfiles
  git:
    dest: "/home/{{ user_name }}/.local/share/dotfiles"
    repo: "https://git.ireas.org/dotfiles"
    verify_commit: yes
- name: Make XDG base directories
  file:
    path: "/home/{{ user_name }}/{{ item }}"
    state: directory
    owner: "{{ user_name }}"
    group: "{{ user_name }}"
    mode: u=rwx,g=rx,o=rx
  with_items:
    - .config
    - .cache
    - .local/share