1
0
Fork 0
Automatically updated Nix overlay for Google Fonts https://github.com/DimitarNestorov/nix-google-fonts-overlay
Find a file
2025-06-03 03:22:25 +00:00
.forgejo/workflows fix CI 2025-06-03 12:16:24 +09:00
pkgs Automatic update 2025-06-03 2025-06-03 03:22:25 +00:00
.gitignore gitignore cloned repos 2025-05-19 09:38:00 +09:00
default.nix Automatic update 2025-06-01 2025-06-01 01:04:41 +00:00
flake.nix move CI from travis to github action 2025-05-19 09:23:51 +09:00
README.md Automatic update 2025-06-01 2025-06-01 01:04:41 +00:00
update.sh migrate from github to forgejo 2025-06-03 12:04:45 +09:00

Nix Google Fonts Overlay 🎁

1925 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 {
      url = "https://github.com/pompydev/nix-google-fonts-overlay/archive/dfb84823efeb84314f8186cb2014edf05136b527.tar.gz";
      sha256 = "sha256:01cpfyzd4xl3a462jyn2xn22hn6i1my1svyag7926r3r2vmck24y";
    }
  );
in
{
  nixpkgs.overlays = [ fontsOverlay ];

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