1
0
mirror of https://gitlab.com/dbrw/ansible-setup.git synced 2025-08-03 21:55:41 +07:00

update config

This commit is contained in:
dbrw 2022-08-13 23:48:02 +07:00
parent ce44dcabe4
commit e9202e0bb7
Signed by: dhimas
GPG Key ID: 8D5D880EB08F1544
6 changed files with 19 additions and 1 deletions

9
python_dev.yml Normal file
View File

@ -0,0 +1,9 @@
- name: Install python tooling
pacman:
name:
- puthon
- python-pip
- mariadb-clients
- name: Install pipenv in user mode
command: pip install --user pipenv

View File

@ -1,4 +1,5 @@
- name: Create AUR directory
become: true
file: path="{{ aur.dir }}"
state=directory
owner={{ username }}

View File

@ -24,6 +24,7 @@
- zathura-pdf-mupdf
- pdftk
- ntfs-3g
- systemd-resolvconf
state: present
- name: Install archival utils

View File

@ -64,6 +64,9 @@
- include_tasks: docker.yml
when: install_docker == True
- include_tasks: python_dev.yml
when: install_python_dev == True
# Dotfiles
- include_tasks: dotfiles.yml
when: pull_dotfiles == True

View File

@ -9,6 +9,7 @@
- dnsmasq
- samba
- iptables-nft
- mkcert
- name: update qemu.conf
lineinfile:

View File

@ -61,12 +61,15 @@ install_virtualization: True
## Do we want to install docker?
install_docker: True
## Do we want to install python development tools?
install_python_dev: True
## AUR vars
## ===========================
use_aur: True
aur:
dir: /home/{{ username }}/.cache/aur
dir: "/home/{{ username }}/.cache/aur"
packages:
- yay
- downgrade