Setup local zsh env
Some checks failed
Lint / Lint (3.10) (push) Failing after 15s
Lint / Lint (3.11) (push) Failing after 15s

This commit is contained in:
Ariejan de Vroom 2024-06-27 09:54:10 +02:00
parent d7a5c76409
commit e141f2b6ff
Signed by: ariejan
GPG Key ID: AD739154F713697B
2 changed files with 13 additions and 0 deletions

View File

@ -34,6 +34,9 @@
- name: Setup a wallpaper
ansible.builtin.import_tasks: wallpaper.yml
- name: Configure local zsh
ansible.builtin.import_tasks: zsh-env-local.yml
- name: Configure gpg-agent pinentry
ansible.builtin.lineinfile:
path: ~/.gnupg/gpg-agent.conf
@ -42,3 +45,4 @@
- name: Set GNOME default browser to firefox
ansible.builtin.shell: xdg-settings set default-web-browser firefox.desktop

View File

@ -0,0 +1,9 @@
---
- 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