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-11-26 11:34:13 +01:00

26 lines
555 B
YAML

- name: Update repositories
become: true
apt:
upgrade: yes
state: latest
update_cache: yes
cache_valid_time: 86400 # One day
- name: Install global packages
become: true
apt:
state: latest
pkg:
- git
- make
- keepassxc
- zsh
- ripgrep
- name: Set default shell to zsh
become: true
user:
name: "{{ ansible_user_id }}"
shell: /usr/bin/zsh
- name: Set git configuration
template:
src: "{{ role_path }}/templates/.gitconfig.j2"
dest: "/home/{{ ansible_user_id }}/.gitconfig"