16 lines
339 B
Nix
16 lines
339 B
Nix
{ pkgs, ... }: {
|
|
fonts.packages = with pkgs; [
|
|
# Use Apple fonts for system and text.
|
|
(pkgs.callPackage ./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
|
|
|
|
# Minecraft font.
|
|
minecraftia
|
|
];
|
|
}
|