blob: 3d047e513315c77108371a667bd15e3c48e61388 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ config, lib, pkgs, ... }:
{
fonts = {
fontDir.enable = true;
enableGhostscriptFonts = true;
fonts = with pkgs; [
xorg.fontschumachermisc
inconsolata
noto-fonts
(iosevka-bin.override { variant = "ss15"; })
];
};
}
|