nixos-config/modules/nixos/linux/gui/desktopish/fonts.nix
Sridhar Ratnakumar e614cd39fd pureintent: re-install; and pin nixos 24.11
remove netadata as well.
2025-03-28 19:24:20 -04:00

16 lines
396 B
Nix

{ pkgs, ... }:
{
fonts = {
enableDefaultPackages = true;
packages = with pkgs; [
# NOTE: Some fonts may break colour emojis in Chrome
# cf. https://github.com/NixOS/nixpkgs/issues/69073#issuecomment-621982371
# If this happens , keep noto-fonts-emoji and try disabling others (nerdfonts, etc.)
noto-fonts-emoji
fira-code
font-awesome
];
};
}