27 lines
533 B
YAML
27 lines
533 B
YAML
personal:
|
|
hosts:
|
|
xps: &xps
|
|
ansible_connection: local
|
|
ansible_become_method: community.general.run0
|
|
desktop: &desktop
|
|
ansible_connection: local
|
|
ansible_become_method: community.general.run0
|
|
htpc: &htpc
|
|
ansible_connection: local
|
|
ansible_become_method: community.general.run0
|
|
fudiggity: &fudiggity
|
|
ansible_connection: local
|
|
|
|
debian:
|
|
hosts:
|
|
fudiggity:
|
|
<<: *fudiggity
|
|
|
|
arch:
|
|
hosts:
|
|
xps:
|
|
<<: *xps
|
|
desktop:
|
|
<<: *desktop
|
|
htpc:
|
|
<<: *htpc
|