mirror of
https://gitlab.com/sagidayan/linux-config.git
synced 2024-12-23 06:29:53 +00:00
16 lines
252 B
YAML
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
|