nixos/legacy/modules/fonts.nix

29 lines
663 B
Nix
Raw Normal View History

2020-11-16 21:14:46 +01:00
{ config, pkgs, ... }:
{
fonts = {
fontconfig.defaultFonts = {
sansSerif = [ "Ubuntu" ];
2023-02-15 21:02:43 +01:00
monospace = [ "Ubuntu Mono" ];
2020-11-16 21:14:46 +01:00
};
fonts = with pkgs; [
cantarell-fonts # gnome default
fira
2023-02-15 21:02:43 +01:00
fira-code # coding
fira-code-symbols # ligatures
2020-11-16 21:14:46 +01:00
fira-mono
2023-02-15 21:02:43 +01:00
font-awesome # icons
joypixels # emojis
liberation_ttf # main microsoft fonts
# mplus-outline-fonts.githubRelease # microsoft fonts
2020-11-16 21:14:46 +01:00
noto-fonts
2023-02-15 21:02:43 +01:00
noto-fonts-cjk-sans
2020-11-16 21:14:46 +01:00
noto-fonts-emoji
2023-02-15 21:02:43 +01:00
noto-fonts-extra
2020-11-16 21:14:46 +01:00
ubuntu_font_family
2023-02-15 21:02:43 +01:00
unifont # unicode fallback
2020-11-16 21:14:46 +01:00
];
};
2021-06-02 10:37:28 +02:00
nixpkgs.config.joypixels.acceptLicense = true;
2020-11-16 21:14:46 +01:00
}