feat(ansible): enable WebGPU in Chrome via chrome-flags.conf and add docs

This commit is contained in:
ja
2026-03-11 22:58:28 +01:00
parent 532e45acba
commit 13dc8f71aa
2 changed files with 46 additions and 0 deletions
+13
View File
@@ -45,3 +45,16 @@
- code-oss
- code-marketplace
state: absent
- name: Configure Chrome flags for WebGPU
copy:
dest: "/home/{{ system_user }}/.config/chrome-flags.conf"
content: |
--enable-unsafe-webgpu
--enable-vulkan
--enable-features=Vulkan
--ignore-gpu-blocklist
owner: "{{ system_user }}"
group: "{{ system_user }}"
mode: '0644'
tags: [chrome, webgpu]