-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.yml
executable file
·56 lines (55 loc) · 1.13 KB
/
setup.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/ansible-playbook -K
---
- hosts: localhost
gather_facts: no
vars:
dnf_pkgs_base:
- htop
- jq
- neovim
- python3
- ripgrep
- tmux
- zsh
- zsh-syntax-highlighting
dnf_pkgs_devel:
- devhelp
- gcc
- git
- gobject-introspection-devel
- graphviz
- glib2-doc
- gtk4-devel
- gtk4-devel-docs
- libadwaita-devel
- meson
- ninja-build
- python3-gobject
- python3-pip
- python3-wheel
- vala
- valadoc
dnf_pkgs_rh:
- fedpkg
flatpaks:
- com.spotify.Client
- org.gnome.Calculator
- org.gnome.Maps
- org.gnome.TextEditor
- org.gnome.dspy
tasks:
- name: Install base packages
become: yes
dnf:
state: latest
name: "{{ dnf_pkgs_base }}"
- name: Install devel packages
become: yes
dnf:
state: latest
name: "{{ dnf_pkgs_devel }}"
# ansible-galaxy collection install community.genera
- name: Install flatpaks
community.general.flatpak:
name: "{{ flatpaks }}"
state: present