1
0
nixfiles/configuration/desktop/fonts.nix

15 lines
192 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-cjk
noto-fonts-emoji
comfortaa
];
}