12 lines
319 B
Nix
12 lines
319 B
Nix
{pkgs, ...}: {
|
|
fonts = {
|
|
enableDefaultPackages = false;
|
|
packages = with pkgs; [inter nerd-fonts.fira-code twitter-color-emoji];
|
|
fontconfig.defaultFonts = rec {
|
|
serif = ["Inter"];
|
|
sansSerif = serif;
|
|
monospace = ["FiraCode Nerd Font"];
|
|
emoji = ["Twitter Color Emoji"];
|
|
};
|
|
};
|
|
}
|