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