linux-config/roles/fonts/tasks/main.yml
2022-01-19 17:17:32 +02:00

19 lines
392 B
YAML

- name: Preparing for Hack Nerd font installation
become: true
file:
path: /usr/share/fonts/hack
state: directory
owner: root
group: root
mode: '0755'
changed_when: false
- name: Installing Hack Nerd Font
become: true
copy:
src: fonts/hack_nerd_font.ttf
dest: /usr/share/fonts/hack/hack_nerd_font.ttf
owner: root
group: root
mode: preserve