arch-install/roles/08_tweaks/tasks/zsh-env-local.yml
Ariejan de Vroom e141f2b6ff
Some checks failed
Lint / Lint (3.10) (push) Failing after 15s
Lint / Lint (3.11) (push) Failing after 15s
Setup local zsh env
2024-08-21 11:47:03 +02:00

9 lines
282 B
YAML

---
- name: Configure CHROME_EXECUTABLE on linux for Flutter
ansible.builtin.lineinfile:
path: "/home/{{ user.name }}/.zshenv.local"
regexp: "^export CHROME_EXECUTABLE="
line: "export CHROME_EXECUTABLE=/usr/bin/chromium"
owner: "{{ user.name }}"
create: yes