18 lines
231 B
Nix
18 lines
231 B
Nix
#
|
|
# Basic system fonts
|
|
#
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
fonts.fontconfig.enable = true;
|
|
fonts.packages = with pkgs; [
|
|
dejavu_fonts
|
|
font-awesome
|
|
ibm-plex
|
|
noto-fonts
|
|
noto-fonts-color-emoji
|
|
noto-fonts-cjk
|
|
roboto
|
|
];
|
|
}
|