16 lines
259 B
Nix
16 lines
259 B
Nix
{ config, pkgs, ... }:
|
|
|
|
# Enable Fonts
|
|
fonts = {
|
|
fontDir.enable = true;
|
|
enableGhostscriptFonts = true;
|
|
packages = with pkgs; [
|
|
corefonts
|
|
terminus_font
|
|
ubuntu_font_family
|
|
liberation_ttf
|
|
dejavu_fonts
|
|
];
|
|
};
|
|
|
|
} |