Added var files and software tasks
This commit is contained in:
parent
6761f2777d
commit
ce24fd4958
9 changed files with 49 additions and 0 deletions
0
group_vars/servers.yml
Normal file
0
group_vars/servers.yml
Normal file
0
group_vars/workstation.yml
Normal file
0
group_vars/workstation.yml
Normal file
0
host_vars/nexus
Normal file
0
host_vars/nexus
Normal file
13
host_vars/noir
Normal file
13
host_vars/noir
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
# Applications
|
||||
firefox: true
|
||||
thunderbird: true
|
||||
steam: true
|
||||
vlc: true
|
||||
virt-manager: true
|
||||
libreoffice: true
|
||||
lutris: true
|
||||
|
||||
# Desktop Environment
|
||||
sway: true
|
||||
wayland: true
|
10
roles/base/tasks/software/core.yml
Normal file
10
roles/base/tasks/software/core.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
- name: install software | core
|
||||
community.general.pacman:
|
||||
name:
|
||||
- htop
|
||||
- vim
|
||||
- tmux
|
||||
- neofetch
|
||||
- git
|
||||
- git-lfs
|
||||
state: present
|
7
roles/base/tasks/software/development.yml
Normal file
7
roles/base/tasks/software/development.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
- name: install software | development
|
||||
community.general.pacman:
|
||||
name:
|
||||
- git
|
||||
- git-lfs
|
||||
- vscodium-bin # AUR
|
||||
state: latest
|
8
roles/base/tasks/software/social.yml
Normal file
8
roles/base/tasks/software/social.yml
Normal file
|
@ -0,0 +1,8 @@
|
|||
- name: install software | social
|
||||
community.general.pacman:
|
||||
name:
|
||||
- signal-desktop
|
||||
- discord
|
||||
- wire-desktop
|
||||
- element-desktop
|
||||
state: latest
|
0
roles/base/tasks/software/wayland.yml
Normal file
0
roles/base/tasks/software/wayland.yml
Normal file
11
roles/base/tasks/software/workstation.yml
Normal file
11
roles/base/tasks/software/workstation.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
- name: install software | workstation
|
||||
community.general.pacman:
|
||||
name:
|
||||
- firefox
|
||||
- alacritty
|
||||
- thunderbird
|
||||
- gimp
|
||||
- inkscape
|
||||
- krita
|
||||
- jellyfin-media-player # AUR
|
||||
state: latest
|
Loading…
Reference in a new issue