Compare commits

...

3 Commits

Author SHA1 Message Date
ee210934cd Install chromium & floorp 2024-08-15 16:46:11 +02:00
e29a73e0c2 Add gparted 2024-08-15 16:32:29 +02:00
82902ea327 Switch backup to deja-dup 2024-08-15 16:32:16 +02:00
6 changed files with 32 additions and 3 deletions

View File

@ -0,0 +1,6 @@
- name: "[Arch] install deja-dup"
become: yes
community.general.pacman:
name:
- deja-dup
when: ansible_distribution == "Archlinux"

View File

@ -1,3 +1,2 @@
---
- import_tasks: arch.yml
when: ansible_distribution == "Archlinux"
- import_tasks: deja-dup.yml

View File

@ -35,7 +35,6 @@
community.general.pacman:
name:
- file-roller
- firefox
- flameshot
- gnome-backgrounds
- gnome-text-editor

View File

@ -0,0 +1,17 @@
- name: "[Arch] install chromium"
become: yes
community.general.pacman:
name:
- chromium
- name: "[Arch] install firefox"
become: yes
community.general.pacman:
name:
- firefox
- name: "[Arch] install floorp"
shell:
cmd:
yay -S --needed --noconfirm floorp-bin
when: ansible_distribution == "Archlinux"

View File

@ -0,0 +1,6 @@
- name: "[Arch] install gparted packages"
become: yes
community.general.pacman:
name:
- gparted
- dosfstools

View File

@ -19,6 +19,8 @@
- import_tasks: fonts.yml
- import_tasks: gparted.yml
- import_tasks: network-manager.yml
- import_tasks: nextcloud.yml