This repository has been archived on 2024-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
setup/roles/system/tasks/main.yml
2022-12-02 20:39:55 +01:00

38 lines
875 B
YAML

- name: Update repositories
become: true
apt:
upgrade: yes
state: latest
update_cache: yes
cache_valid_time: 86400 # One day
- name: Install APT packages
become: true
apt:
state: latest
pkg:
- git
- make
- keepassxc
- ripgrep
- curl
- unzip
- libreoffice-calc
- libreoffice-impress
- libreoffice-writer
- gimp
- nextcloud-desktop
- tree
- wireshark
- syncthing
- name: Install .gitconfig
template:
src: "{{ role_path }}/templates/.gitconfig.j2"
dest: ~/.gitconfig
- name: Install Regolith Xresources file
template:
src: "{{ role_path }}/templates/Xresources.j2"
dest: ~/.config/regolith2/Xresources
- name: Install keepassxc.ini
template:
src: "{{ role_path }}/templates/keepassxc.ini.j2"
dest: ~/.config/keepassxc/keepassxc.ini