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:
parent
ce44dcabe4
commit
e9202e0bb7
9
python_dev.yml
Normal file
9
python_dev.yml
Normal 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
|
@ -1,4 +1,5 @@
|
||||
- name: Create AUR directory
|
||||
become: true
|
||||
file: path="{{ aur.dir }}"
|
||||
state=directory
|
||||
owner={{ username }}
|
||||
|
@ -24,6 +24,7 @@
|
||||
- zathura-pdf-mupdf
|
||||
- pdftk
|
||||
- ntfs-3g
|
||||
- systemd-resolvconf
|
||||
state: present
|
||||
|
||||
- name: Install archival utils
|
||||
|
@ -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
|
||||
|
@ -9,6 +9,7 @@
|
||||
- dnsmasq
|
||||
- samba
|
||||
- iptables-nft
|
||||
- mkcert
|
||||
|
||||
- name: update qemu.conf
|
||||
lineinfile:
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user