linux-config/roles/base/tasks/main.yml
2021-10-28 18:19:25 +03:00

16 lines
252 B
YAML

- name: Installing packages
become: true
package:
name:
- curl
- bat
- wget
- git
# - podman
state: present
- name: Copy gitconfig base
copy:
src: dotfiles/gitconfig
dest: ~/.gitconfig
force: no