nix/module/common/Font.nix

13 lines
304 B
Nix
Raw Normal View History

{ 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.
2024-05-02 12:59:31 +03:00
font-awesome
];
}