Automatically updated Nix overlay for Google Fonts
https://github.com/DimitarNestorov/nix-google-fonts-overlay
ci | ||
pkgs | ||
.travis.yml | ||
default.nix | ||
github_deploy_key.enc | ||
README.md |
Nix Google Fonts Overlay 🎁
967 high-quality fonts packaged for Nix
This Nix overlay contains individual packages for all the fonts from the Google Fonts project. The packages are automatically generated using nix-google-fonts-gen tool. Updated weekly.
Use in NixOS configuration
To use fonts from this overlay as a part of NixOS configuration, something like the following can be used:
{ config, pkgs, lib, ... }:
let
fontsOverlay = import (
builtins.fetchTarball https://github.com/dimitarnestorov/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
];
...
}