1
0
nixfiles/configuration/desktop/fonts.nix

14 lines
178 B
Nix
Raw 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-cjk
noto-fonts-emoji
];
}