2023-06-19 22:20:47 +02:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
|
2023-09-02 18:02:51 +02:00
|
|
|
fonts.enableDefaultPackages = true;
|
|
|
|
fonts.packages = with pkgs; [
|
2023-06-19 22:20:47 +02:00
|
|
|
roboto
|
|
|
|
roboto-mono
|
|
|
|
noto-fonts
|
|
|
|
noto-fonts-emoji
|
2024-07-23 20:23:58 +02:00
|
|
|
comfortaa
|
2024-11-21 13:45:26 +01:00
|
|
|
] ++ (if pkgs ? "noto-fonts-cjk-sans" then [ pkgs.noto-fonts-cjk-sans ] else [ pkgs.noto-fonts-cjk ]);
|
2023-06-19 22:20:47 +02:00
|
|
|
}
|