1
0
Fork 0
mirror of https://github.com/DO1JLR/ansible_linux_desktop_setup.git synced 2024-09-14 19:54:51 +02:00
ansible_linux_desktop_setup/site.yml

36 lines
1.2 KiB
YAML
Raw Normal View History

2020-12-16 17:35:28 +01:00
---
- name: check if ansible is not to old
hosts: localhost
tags:
- default
roles:
- ansible_version
gather_facts: no
- name: run base setup roles
hosts: localhost
roles:
- { role: base, tags: [default,packages,base]}
- { role: workstation_packages, tags: [default, workstation_packages, packages, setup]}
- { role: ntp, tags: ntp }
- { role: arch-fonts, tags: [font,fonts,arch-fonts]}
- name: user specific setup
hosts: localhost
roles:
- { role: dotfiles, tags: [default,dotfiles,fancy]}
- { role: manage_users, tags: [ssh,manage,manage_users]}
- { role: authorized_keys, tags: [ssh,auth,authorized_keys]}
- { role: sshd, tags: [ssh, sshd]}
- { role: akku-warning, tags: [akku,akku_warning,akku-warning]}
- { role: pulseaudio, tags: pulseaudio }
- { role: networkmanager, tags: [nm, networkmanager]}
- { role: copy_files }
- { role: i3wm, tags: i3wm }
- { role: xrandr, tags: xrandr }
- { role: install-firefox, tags: firefox }
- { role: nextcloud, tags: nextcloud }
- { role: openvpn, tags: openvpn }
- { role: winehq, tags: [wine, winehq]}
- { role: no-sleep, tags: no_sleep }