diff options
| author | Michael Hoang <Enzime@users.noreply.github.com> | 2023-09-12 07:50:42 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-12 07:50:42 +0200 |
| commit | 4496ab26628c5f43d2a5c577a06683c753e32fe2 (patch) | |
| tree | 9206401633a5d914d78309b91eb17532171ca10a /modules | |
| parent | ee999ab667808892cc5c5518d047cad70ebfca01 (diff) | |
| parent | ba92c4d307b54f172103163272e21f7c39542e60 (diff) | |
Merge pull request #771 from Benjamin-L/support-dfont-fonts
Add support for dfont to the fonts module
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/fonts/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/fonts/default.nix b/modules/fonts/default.nix index b39df76..eb5bc49 100644 --- a/modules/fonts/default.nix +++ b/modules/fonts/default.nix @@ -41,7 +41,7 @@ in { preferLocalBuild = true; } '' mkdir -p $out/Library/Fonts - font_regexp='.*\.\(ttf\|ttc\|otf\)' + font_regexp='.*\.\(ttf\|ttc\|otf\|dfont\)' find -L ${toString cfg.fonts} -regex "$font_regexp" -type f -print0 | while IFS= read -rd "" f; do ln -sf "$f" $out/Library/Fonts done |
