14 lines
192 B
Nix
14 lines
192 B
Nix
|
{pkgs, ... }:
|
||
|
{
|
||
|
fonts.fonts = with pkgs; [
|
||
|
noto-fonts
|
||
|
noto-fonts-cjk
|
||
|
noto-fonts-emoji
|
||
|
liberation_ttf
|
||
|
fira-code
|
||
|
fira-code-symbols
|
||
|
dina-font
|
||
|
proggyfonts
|
||
|
];
|
||
|
}
|