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

43 lines
976 B
YAML
Raw Normal View History

- name: Update repositories
become: true
apt:
upgrade: yes
state: latest
update_cache: yes
cache_valid_time: 86400 # One day
2022-12-02 19:10:38 +00:00
- name: Install APT packages
become: true
apt:
state: latest
pkg:
- git
- make
- keepassxc
2022-11-26 10:34:13 +00:00
- ripgrep
2022-11-26 16:58:49 +00:00
- curl
2022-11-26 17:11:26 +00:00
- unzip
2022-11-26 17:16:41 +00:00
- libreoffice-calc
- libreoffice-impress
- libreoffice-writer
- gimp
2022-11-27 13:30:48 +00:00
- nextcloud-desktop
2022-11-28 19:13:24 +00:00
- tree
2022-11-28 19:21:38 +00:00
- wireshark
- syncthing
2022-11-26 16:33:21 +00:00
- name: Install .gitconfig
2022-11-26 10:34:13 +00:00
template:
src: "{{ role_path }}/templates/.gitconfig.j2"
2022-11-26 16:58:49 +00:00
dest: ~/.gitconfig
2022-11-27 13:30:48 +00:00
- name: Install Regolith Xresources file
template:
src: "{{ role_path }}/templates/Xresources.j2"
dest: ~/.config/regolith2/Xresources
2022-12-02 20:05:32 +00:00
- name: Create keepassxc config directory
file:
path: ~/.config/keepassxc
state: directory
- name: Install keepassxc.ini
template:
src: "{{ role_path }}/templates/keepassxc.ini.j2"
dest: ~/.config/keepassxc/keepassxc.ini