Files
nixos/system/fonts.nix
T
2025-12-25 09:44:23 -06:00

22 lines
340 B
Nix

{pkgs, ...}: {
fonts.packages = with pkgs; [
nerd-fonts.fira-code
nerd-fonts.jetbrains-mono
# google
noto-fonts
noto-fonts-cjk-sans
noto-fonts-cjk-serif
noto-fonts-color-emoji
roboto
open-sans
lato
montserrat
inter
poppins
fira-code
fira-code-symbols
jetbrains-mono
];
}