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