Added initial tasks to bluefin role
This commit is contained in:
parent
37cd5f6f54
commit
5c6f244091
3 changed files with 12 additions and 2 deletions
7
h.yml
7
h.yml
|
|
@ -8,6 +8,9 @@
|
||||||
when: ansible_distribution == 'Fedora'
|
when: ansible_distribution == 'Fedora'
|
||||||
and
|
and
|
||||||
ansible_nodename != 'bluefin'
|
ansible_nodename != 'bluefin'
|
||||||
|
- name: bluefin
|
||||||
|
when: ansible_distribution == 'Fedora'
|
||||||
|
and
|
||||||
|
ansible_nodename == 'bluefin'
|
||||||
- name: gnome
|
- name: gnome
|
||||||
when: ansible_env.DESKTOP_SESSION == 'gnome'
|
when: ansible_env.DESKTOP_SESSION == 'gnome'
|
||||||
- name: dotfiles
|
|
||||||
|
|
@ -1,3 +1,9 @@
|
||||||
#SPDX-License-Identifier: MIT-0
|
#SPDX-License-Identifier: MIT-0
|
||||||
---
|
---
|
||||||
# tasks file for bluefin
|
# tasks file for bluefin
|
||||||
|
|
||||||
|
- name: Install Flatpaks
|
||||||
|
flatpak:
|
||||||
|
name: "{{ item }}"
|
||||||
|
state: present
|
||||||
|
with_items: "{{ flatpaks_h }}"
|
||||||
|
|
@ -30,6 +30,7 @@ packages:
|
||||||
- exa
|
- exa
|
||||||
- gnome-shell-extension-caffeine
|
- gnome-shell-extension-caffeine
|
||||||
- python-psutil
|
- python-psutil
|
||||||
|
- tldr
|
||||||
|
|
||||||
flatpaks:
|
flatpaks:
|
||||||
- com.vscodium.codium
|
- com.vscodium.codium
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue