dots/modules/desktop/fonts.nix
Nico 3660ef23f1 chore: organise modules
Organise modules in a significantly better way with categories.
2025-05-03 16:34:35 +10:00

13 lines
337 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
];
};
}