System/modules/fonts.nix

15 lines
309 B
Nix
Raw Normal View History

2021-12-20 13:37:26 -05:00
{ config, pkgs, ... }:
{
fonts.fonts = with pkgs; [
## Monospace Fonts
# FiraCode with nerd-fonts patch, as well as fira-code symbols for emacs
(nerdfonts.override { fonts = [ "FiraCode" ]; })
fira-code-symbols
2022-04-22 23:23:55 -04:00
fira
2021-12-20 13:37:26 -05:00
# Proportional
roboto
liberation_ttf
noto-fonts
];
}