Add simple ansible files for installation
This commit is contained in:
parent
7cac7b27ae
commit
eeb81e05ee
2 changed files with 43 additions and 0 deletions
15
desktop.yml
Normal file
15
desktop.yml
Normal file
|
@ -0,0 +1,15 @@
|
|||
- name: Install devconf desktop utils
|
||||
hosts: localhost
|
||||
gather_facts: true
|
||||
tasks:
|
||||
- name: Install alacritty
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
name: alacritty
|
||||
state: latest
|
||||
- name: Install lm_sensors
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
name: lm_sensors
|
||||
state: latest
|
||||
|
28
shell.yml
Normal file
28
shell.yml
Normal file
|
@ -0,0 +1,28 @@
|
|||
- name: Install devconf shell utils
|
||||
hosts: localhost
|
||||
gather_facts: true
|
||||
tasks:
|
||||
- name: Install RPMFusion free
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
name: "https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-42.noarch.rpm"
|
||||
- name: Install RPMFusion nonfree
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
name: "https://mirrors.rpmfusion.org/free/fedora/rpmfusion-nonfree-release-42.noarch.rpm"
|
||||
- name: Install vim
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
name: vim
|
||||
state: latest
|
||||
- name: Install fish
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
name: fish
|
||||
state: latest
|
||||
- name: Install fastfetch
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
name: fastfetch
|
||||
state: latest
|
||||
|
Loading…
Reference in a new issue