1
0
Fork 0
Automatically updated Nix overlay for Google Fonts https://github.com/DimitarNestorov/nix-google-fonts-overlay
Find a file
2025-05-19 09:28:40 +09:00
.github/workflows move CI from travis to github action 2025-05-19 09:23:51 +09:00
pkgs [Travis CI] Automatic update 2022-06-10 (Build 22) 2022-06-10 14:54:00 +00:00
default.nix [Travis CI] Automatic update 2022-06-10 (Build 22) 2022-06-10 14:54:00 +00:00
flake.nix move CI from travis to github action 2025-05-19 09:23:51 +09:00
README.md move CI from travis to github action 2025-05-19 09:23:51 +09:00
update.sh oopsy daisy I commented a line that shouldn't have been commented 2025-05-19 09:28:40 +09:00

Nix Google Fonts Overlay 🎁

1523 high-quality fonts packaged for Nix

This Nix overlay allows you to use fonts in github.com/google/fonts. Updated weekly.

Examples

{
  config,
  pkgs,
  lib,
  ...
}:

let
  fontsOverlay = import (
    builtins.fetchTarball "https://github.com/pompydev/nix-google-fonts-overlay/archive/master.tar.gz"
  );
in
{
  nixpkgs.overlays = [ fontsOverlay ];

  fonts.fonts = with pkgs; [
    google-fonts-eb-garamond
    google-fonts-exo
    google-fonts-lobster
  ];
}