remove home role for now

This commit is contained in:
2021-10-04 00:22:39 +02:00
parent 43189b4cc8
commit 90cfb4952f
7 changed files with 0 additions and 43 deletions

View File

@@ -1,3 +0,0 @@
---
home_place_dotfiles: false
home_configure_gnome: true

View File

@@ -1,7 +0,0 @@
---
- name: Compile glib schemas
ansible.builtin.command:
cmd: "glib-compile-schemas /home/{{ item[0] }}/.local/share/gnome-shell/extensions/{{ item[1].value.extension_uuid }}/schemas"
with_nested:
- "{{ users }}"
- "{{ home_gnome_shell_extensions | dict2items }}"

View File

@@ -1,6 +0,0 @@
---
- name: Clone dotfiles
ansible.builtin.git:
repo: "{{ item.value.dotfiles }}"
dest: "/home/{{ item.key }}/.dotfiles"
update: "{{ item.value.update }}"

View File

@@ -1,9 +0,0 @@
---
- name: Install GNOME Shell Extensions
ansible.builtin.git:
repo: "{{ item[1].key }}"
dest: "/home/{{ item[0] }}/.local/share/gnome-shell/extensions/{{ item[1].value.extension_uuid }}"
with_nested:
- "{{ users }}"
- "{{ home_gnome_shell_extensions | dict2items }}"
notify: Compile glib schemas

View File

@@ -1,8 +0,0 @@
---
- name: Include dotfiles.yml
ansible.builtin.include: dotfiles.yml
when: home_place_dotfiles | bool
- name: Include gnome.yml
ansible.builtin.include: gnome.yml
when: home_configure_gnome | bool