nixos/legacy/modules/fonts.nix

30 lines
579 B
Nix
Raw Normal View History

2020-11-16 21:14:46 +01:00
{ config, pkgs, ... }:
{
fonts = {
fontconfig.defaultFonts = {
monospace = [ "Ubuntu Mono" ];
sansSerif = [ "Ubuntu" ];
};
fonts = with pkgs; [
cantarell-fonts # gnome default
dina-font
fira
fira-mono
fira-code
fira-code-symbols
font-awesome
liberation_ttf
2022-11-29 17:11:57 +01:00
mplus-outline-fonts.githubRelease
2020-11-16 21:14:46 +01:00
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
proggyfonts
ubuntu_font_family
joypixels
2022-11-29 17:11:57 +01:00
unifont # unicode
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
}