1
0
nixfiles/configuration/desktop/fonts.nix

14 lines
273 B
Nix
Raw Permalink Normal View History

{ pkgs, ... }:
{
2023-09-02 18:02:51 +02:00
fonts.enableDefaultPackages = true;
fonts.packages = with pkgs; [
roboto
roboto-mono
noto-fonts
noto-fonts-emoji
comfortaa
] ++ (if pkgs ? "noto-fonts-cjk-sans" then [ pkgs.noto-fonts-cjk-sans ] else [ pkgs.noto-fonts-cjk ]);
}