40 lines
890 B
YAML
40 lines
890 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
|
|
- tree
|
|
- wireshark
|
|
- name: Install .gitconfig
|
|
template:
|
|
src: "{{ role_path }}/templates/.gitconfig.j2"
|
|
dest: ~/.gitconfig
|
|
- name: Copy Xresources
|
|
copy:
|
|
src: "{{ role_path }}/files/Xresources"
|
|
dest: ~/.config/regolith2/Xresources
|
|
- name: Create keepassxc config directory
|
|
file:
|
|
path: ~/.config/keepassxc
|
|
state: directory
|
|
- name: Copy keepassxc.ini
|
|
copy:
|
|
src: "{{ role_path }}/files/keepassxc.ini"
|
|
dest: ~/.config/keepassxc/keepassxc.ini
|