alqueva/hosts/python/fonts.nix

22 lines
488 B
Nix
Raw Normal View History

2024-11-25 21:12:05 +00:00
{pkgs, ...}: {
alqueva.system.fonts = {
2024-11-25 21:12:05 +00:00
names = {
sansSerif = ["IBM Plex Sans"];
monospace = ["IBM Plex Mono"];
serif = ["IBM Plex Serif"];
2025-01-16 00:37:14 +00:00
emoji = ["Twitter Color Emoji"];
2024-11-25 21:12:05 +00:00
};
2024-11-26 13:51:16 +00:00
packages = {
sansSerif = [pkgs.ibm-plex];
monospace = [pkgs.ibm-plex];
serif = [pkgs.ibm-plex];
2025-01-16 00:37:14 +00:00
emoji = [pkgs.twemoji-color-font];
2024-11-26 13:51:16 +00:00
extra = [
2025-01-16 00:37:14 +00:00
pkgs.noto-fonts
2024-12-10 15:12:00 +00:00
pkgs.nerd-fonts.symbols-only
2024-11-26 13:51:16 +00:00
];
2024-11-25 21:12:05 +00:00
};
enable = true;
};
}