stockholm/makefu/2configs/extra-fonts.nix

15 lines
301 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
fonts = {
2021-10-01 16:43:15 +00:00
fontDir.enable = true;
enableGhostscriptFonts = true;
fonts = with pkgs; [
inconsolata # monospaced
ubuntu_font_family # Ubuntu fonts
unifont # some international languages
dejavu_fonts
terminus_font
];
};
}