forked from nico/dots
13 lines
337 B
Nix
13 lines
337 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# install basic fonts
|
|
fonts = {
|
|
packages = with pkgs; [
|
|
noto-fonts # most langs and emojis
|
|
noto-fonts-cjk-sans # gets japanese and chinese langs
|
|
nerd-fonts.comic-shanns-mono # programming fonts
|
|
corefonts # basic web fonts
|
|
];
|
|
};
|
|
}
|