dots/modules/desktop/fonts.nix
2025-12-30 01:46:27 +11:00

15 lines
355 B
Nix

{ config, lib, pkgs, ... }:
{
# install basic fonts
fonts = {
packages = with pkgs; [
noto-fonts # most langs and emojis
noto-fonts-cjk-sans # gets japanese and chinese langs
nerd-fonts.comic-shanns-mono # programming fonts
corefonts # basic web fonts
comic-neue
];
};
}