nixos-config/modules/nixos/linux/gui/desktopish/fonts.nix
Sridhar Ratnakumar a6e205a95e
more waybar stuff
2024-11-05 18:11:18 -05:00

18 lines
445 B
Nix

{ config, lib, 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
cascadia-code
nerdfonts
font-awesome
];
};
}