diff --git a/tasks/devel-Archlinux.yml b/tasks/devel-Archlinux.yml index 959e912..21041e0 100644 --- a/tasks/devel-Archlinux.yml +++ b/tasks/devel-Archlinux.yml @@ -1,6 +1,14 @@ --- # Common/Devel: Install and Configure Dev Env - ArchLinux Version +- name: devel - Fonts + package: + name: "{{ packages }}" + state: present + vars: + packages: + - fonts-hack + # Install Visual Studio Code and Set Basic Configuration - name: vscode - Basics block: diff --git a/tasks/devel-Darwin.yml b/tasks/devel-Darwin.yml index 67a1cb2..6c8e317 100644 --- a/tasks/devel-Darwin.yml +++ b/tasks/devel-Darwin.yml @@ -1,6 +1,11 @@ --- # Common/Devel: Install and Configure Dev Env - macOS Version +- name: devel - Fonts + homebrew_cask: + name: caskroom/fonts/font-hack + state: present + # Install Visual Studio Code and Set Basic Configuration - name: vscode - Basics block: diff --git a/tasks/devel-Debian.yml b/tasks/devel-Debian.yml index 09ec4be..cffc34a 100644 --- a/tasks/devel-Debian.yml +++ b/tasks/devel-Debian.yml @@ -1,6 +1,12 @@ --- # Common/Devel: Install and Configure Dev Env - Debian Version +- name: devel - Fonts + become: yes + apt: + name: fonts-hack-ttf + state: present + # Install Visual Studio Code and Set Basic Configuration - name: vscode - Basics block: