2024-06-30 03:56:48 +03:00
|
|
|
{ pkgs, __findFile, ... }: {
|
2024-03-04 00:34:39 +03:00
|
|
|
fonts.packages = with pkgs; [
|
2024-05-04 23:15:57 +03:00
|
|
|
# Use Apple fonts for system and text.
|
2024-06-30 03:56:48 +03:00
|
|
|
(pkgs.callPackage <package/applefont> {})
|
2024-05-04 23:15:57 +03:00
|
|
|
|
|
|
|
# Use Nerd version of Terminus for monospaced fonts.
|
2024-03-04 00:34:39 +03:00
|
|
|
(nerdfonts.override { fonts = [ "Terminus" ]; })
|
2024-05-04 23:15:57 +03:00
|
|
|
|
|
|
|
# I don't use FA, but add it for compatibility.
|
2024-05-02 12:59:31 +03:00
|
|
|
font-awesome
|
2024-06-25 02:13:09 +03:00
|
|
|
|
|
|
|
# Minecraft font.
|
|
|
|
minecraftia
|
2024-03-04 00:34:39 +03:00
|
|
|
];
|
|
|
|
}
|