machine_setup/ansible/roles/fonts/tasks/linux.yaml
2022-10-17 15:22:46 -04:00

14 lines
376 B
YAML

- name: Install packages
pacman:
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
update_cache: true