Skip to content

Instantly share code, notes, and snippets.

@samueldr
Last active July 2, 2019 14:13
{ pkgs ? import <nixpkgs> {} }:
let
inherit (pkgs) makeFontsConf;
in
pkgs.mkShell {
FONTCONFIG_FILE = makeFontsConf {
fontDirectories = with pkgs; [
noto-fonts
noto-fonts-emoji
];
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment