14 lines
172 B
Nix
14 lines
172 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
fonts.enableDefaultFonts = true;
|
|
fonts.fonts = with pkgs; [
|
|
roboto
|
|
roboto-mono
|
|
noto-fonts
|
|
noto-fonts-cjk
|
|
noto-fonts-emoji
|
|
];
|
|
}
|