mirror of
https://github.com/foo-dogsquared/ansible-playbooks.git
synced 2025-01-30 22:57:57 +00:00
916296c6d8
This is basically a simpler version of the Fedora Workstation playbook with some layered packages on top of it.
38 lines
658 B
YAML
38 lines
658 B
YAML
# TODO:
|
|
# * Custom session variables
|
|
---
|
|
- name: foo-dogsquared's Fedora workstation
|
|
hosts: workstation
|
|
become: yes
|
|
|
|
roles:
|
|
- role: system/gnome
|
|
tags:
|
|
- base
|
|
- desktop
|
|
- system
|
|
|
|
- role: system/external_backup
|
|
tags:
|
|
- base
|
|
- desktop
|
|
- system
|
|
|
|
- role: system/flatpak
|
|
tags:
|
|
- desktop
|
|
- system
|
|
- flatpak
|
|
|
|
tasks:
|
|
- name: Install layered packages
|
|
community.general.rpm_ostree_pkg:
|
|
name:
|
|
- ansible
|
|
- distrobox
|
|
- borgmatic
|
|
- gnome-boxes
|
|
- kitty
|
|
- openssl
|
|
state: present
|