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