alqueva/hosts/micronix/fonts.nix

18 lines
611 B
Nix
Raw Normal View History

2024-12-10 20:01:46 -03:00
{pkgs, ...}: {
alqueva.fonts = {
2024-12-14 04:32:17 -03:00
enable = true;
2024-12-10 20:01:46 -03:00
names = {
2024-12-10 20:16:42 -03:00
sansSerif = ["Liberation Sans"];
monospace = ["JetBrainsMono Nerd Font"];
serif = ["Liberation Serif"];
2024-12-10 20:01:46 -03:00
emoji = ["OpenMoji Color"];
};
packages = {
2024-12-13 22:47:06 -03:00
sansSerif = [pkgs.liberation_ttf pkgs.noto-fonts pkgs.noto-fonts-cjk-sans pkgs.noto-fonts-cjk-serif];
monospace = [pkgs.nerd-fonts.jetbrains-mono pkgs.noto-fonts];
serif = [pkgs.liberation_ttf pkgs.noto-fonts pkgs.noto-fonts pkgs.noto-fonts-cjk-sans pkgs.noto-fonts-cjk-serif];
emoji = [pkgs.openmoji-color pkgs.noto-fonts];
2024-12-10 20:01:46 -03:00
};
};
}