fix: default vars in tweaks

This commit is contained in:
mrjk 2025-08-07 14:37:17 -04:00
parent 4e9fea5bc3
commit 40a500a3eb
2 changed files with 15 additions and 11 deletions

View File

@ -0,0 +1,13 @@
tweaks_install_pkg:
- vim
- htop
- iftop
- iotop
- bash-completion
- lsof
- tree
- psmisc
- git

View File

@ -6,7 +6,7 @@
vars:
base_config:
tasks:
- install custom packages
- "install custom packages: {{ tweaks_install_pkg|join(' ') }}"
- configure bash
- configure git
- configure vim
@ -15,16 +15,7 @@
- name: Ensure base packages are installed
package:
name:
- vim
- htop
- iftop
- iotop
- bash-completion
- lsof
- tree
- psmisc
- git
name: "{{ tweaks_install_pkg }}"
state: present