1{ config, lib, pkgs, ... }:
2
3with lib;
4
5{
6
7 options = {
8
9 fonts = {
10
11 # TODO: find another name for it.
12 fonts = mkOption {
13 type = types.listOf types.path;
14 example = literalExample "[ pkgs.dejavu_fonts ]";
15 description = "List of primary font paths.";
16 };
17
18 };
19
20 };
21
22 config = {
23
24 fonts.fonts =
25 [ pkgs.xorg.fontbhttf
26 pkgs.xorg.fontbhlucidatypewriter100dpi
27 pkgs.xorg.fontbhlucidatypewriter75dpi
28 pkgs.dejavu_fonts
29 pkgs.freefont_ttf
30 pkgs.liberation_ttf
31 pkgs.xorg.fontbh100dpi
32 pkgs.xorg.fontmiscmisc
33 pkgs.xorg.fontcursormisc
34 ];
35
36 };
37
38}