fixed flatpak url ref and added fastfetch deb

This commit is contained in:
Caleb Fultz 2024-07-15 17:27:49 +00:00
parent 63712141b8
commit dc1631929c
2 changed files with 35 additions and 33 deletions

View File

@ -22,6 +22,7 @@
- ubuntu-desktop - ubuntu-desktop
- task-gnome-desktop - task-gnome-desktop
- gnome-shell-extensions - gnome-shell-extensions
- flatpak
state: present state: present
- name: Install GUI apps - name: Install GUI apps
@ -40,11 +41,8 @@
- name: Install flatpaks - name: Install flatpaks
become: yes become: yes
package:
name: flatpak
state: present
community.general.flatpak: community.general.flatpak:
name: https://s3.amazonaws.com/alexlarsson/spotify-repo/spotify.flatpakref name: https://dl.flathub.org/repo/appstream/com.spotify.Client.flatpakref
state: present state: present
@ -55,7 +53,7 @@
- steam - steam
- code - code
state: present state: present
- name: Install Codium snap - name: Install Codium snap
become: yes become: yes
community.general.snap: community.general.snap:
@ -68,4 +66,10 @@
become: yes become: yes
tags: chrome tags: chrome
apt: apt:
deb: https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb deb: https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
- name: Install fastfetch
become: yes
tags: fastfetch
apt:
deb: https://github.com/fastfetch-cli/fastfetch/releases/download/2.18.1/fastfetch-linux-amd64.deb

View File

@ -1,26 +1,26 @@
- name: Install aptitude - name: Install aptitude
apt: apt:
name: aptitude name: aptitude
state: present state: present
update_cache: true update_cache: true
- name: Install required system packages - name: Install required system packages
apt: apt:
pkg: pkg:
- apt-transport-https - apt-transport-https
- ca-certificates - ca-certificates
- curl - curl
- software-properties-common - software-properties-common
- python3-pip - python3-pip
- virtualenv - virtualenv
- python3-setuptools - python3-setuptools
state: latest state: latest
update_cache: true update_cache: true
- name: Add Docker GPG apt Key - name: Add Docker GPG apt Key
apt_key: apt_key:
url: https://download.docker.com/linux/ubuntu/gpg url: https://download.docker.com/linux/ubuntu/gpg
state: present state: present
- name: Add Docker Repository - name: Add Docker Repository
apt_repository: apt_repository:
@ -29,15 +29,13 @@
- name: Update apt and install docker-ce - name: Update apt and install docker-ce
apt: apt:
name: name:
- docker-ce - docker-ce
- docker-ce-cli - docker-ce-cli
- containerd.io - containerd.io
- docker-buildx-plugin - docker-buildx-plugin
- docker-compose-plugin - docker-compose-plugin
state: latest
update_cache: true
- name: Install Docker Module for Python - name: Install Docker Module for Python
pip: pip:
name: docker name: docker