mirror of
https://github.com/DO1JLR/ansible_linux_desktop_setup.git
synced 2024-09-14 19:54:51 +02:00
59 lines
847 B
YAML
59 lines
847 B
YAML
---
|
|
|
|
- name: Install useful packages
|
|
hosts: thinkpad
|
|
tags:
|
|
- packages
|
|
- updates
|
|
- setup
|
|
roles:
|
|
- workstation_packages
|
|
|
|
- name: enable and secure sshd
|
|
hosts: thinkpad
|
|
tags:
|
|
- secure
|
|
- ssh
|
|
- setup
|
|
roles:
|
|
- authorized_keys
|
|
- sshd
|
|
|
|
- name: Install useful dotfiles
|
|
hosts: thinkpad
|
|
tags:
|
|
- setup
|
|
roles:
|
|
- dotfiles
|
|
|
|
- name: install modules for sound and bluetooth
|
|
hosts: thinkpad
|
|
tags:
|
|
- setup
|
|
- pulseaudio
|
|
roles:
|
|
- pulseaudio
|
|
|
|
#
|
|
# Currently it dosen't work on arch. Rely sad!
|
|
# Issue is open: https://github.com/maxbachmann/role-firefox/issues/29
|
|
#
|
|
# - name: improve firefox configuration
|
|
# hosts: thinkpad
|
|
# tags:
|
|
# - setup
|
|
# - firefox
|
|
# roles:
|
|
# - firefox
|
|
|
|
|
|
- name: Install useful packages
|
|
hosts: thinkpad
|
|
tags:
|
|
- packages
|
|
- i3wm
|
|
roles:
|
|
- copy_files
|
|
- i3wm
|
|
|
|
|