machine_setup/ansible/roles/fonts/tasks/linux.yaml
Tom Alexander b0f98f1fdb
Do not needlessly update pacman cache in fonts role.
This was causing an always-yellow step.
2023-03-14 15:53:05 -04:00

13 lines
354 B
YAML

- name: Install packages
package:
name:
- adobe-source-code-pro-fonts
- adobe-source-sans-fonts
# - ttf-cascadia-code # ttf existing at all breaks fonts in emacs
- otf-cascadia-code # ttf cascadia broken in emacs
- noto-fonts
- noto-fonts-cjk
- noto-fonts-emoji
- noto-fonts-extra
state: present