arch-install/roles/08_tweaks/tasks/zsh-env-local.yml

9 lines
282 B
YAML
Raw Permalink Normal View History

2024-06-27 07:54:10 +00:00
---
- 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