mirror of
https://gitlab.com/sagidayan/linux-config.git
synced 2024-10-31 21:15:25 +00:00
16 lines
334 B
YAML
16 lines
334 B
YAML
|
- name: Preparing for Hack Nerd font installation
|
||
|
become: true
|
||
|
file:
|
||
|
path: /usr/share/fonts/hack
|
||
|
state: directory
|
||
|
owner: root
|
||
|
group: root
|
||
|
|
||
|
- 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
|