nix/system/Font.nix

17 lines
378 B
Nix
Raw Normal View History

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