14 lines
300 B
Nix
14 lines
300 B
Nix
|
{ 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
|
||
|
# Proportional
|
||
|
roboto
|
||
|
liberation_ttf
|
||
|
noto-fonts
|
||
|
];
|
||
|
}
|