blob: 25ca7a33a9f20352a18ccbf09ce6e0ba101bb586 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ pkgs, ... }:
{
fonts = {
fontDir.enable = true;
enableGhostscriptFonts = true;
fonts = with pkgs; [
inconsolata # monospaced
ubuntu_font_family # Ubuntu fonts
unifont # some international languages
dejavu_fonts
terminus_font
];
};
}
|