-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.yml
83 lines (72 loc) · 1.42 KB
/
install.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
---
- hosts: localhost
connection: local
vars:
user: "{{ ansible_user_id }}"
pre_tasks:
- name: Install required packages
dnf:
name: "{{ item }}"
state: present
loop:
- rsync
- unzip
- alsa-utils
- bind-utils
- xss-lock
- light
- acpi
- cronie
become: true
tags: [minimal]
roles:
- role: awesome-xorg
tags: [awesome, minimal]
- role: flatpak
tags: [flatpak, mimimal]
- role: system
tags: [system, minimal]
- role: kitty
tags: [kitty]
- role: picom
tags: [picom]
- role: vscode
tags: [vscode]
- role: rofi
tags: [rofi]
- role: i3lock-color
tags: [i3lock-color]
- role: ranger
tags: [ranger]
tasks:
- name: Install additional packages
dnf:
name: "{{ item }}"
state: present
loop:
- bash-completion
- vim
- htop
- wget
- glibc-langpack-ru
- flameshot
- tar
- tree
- keepassxc
- rclone
- openssl
- cryptsetup
- arandr
- openconnect
- ImageMagick
- ffmpeg
- xclip
- pwgen
- vlc
- libvdpau-va-gl # mplayer
- kernel-tools # cpupower
- thunar
- shotwell
- gimp
become: true
tags: [additional-packages]