20 lines
383 B
Nix
20 lines
383 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
fonts.packages = with pkgs; [
|
|
nerd-fonts.jetbrains-mono
|
|
nerd-fonts.fira-code
|
|
nerd-fonts.droid-sans-mono
|
|
noto-fonts
|
|
noto-fonts-cjk-sans
|
|
noto-fonts-color-emoji
|
|
liberation_ttf
|
|
fira-code
|
|
fira-code-symbols
|
|
mplus-outline-fonts.githubRelease
|
|
dina-font
|
|
proggyfonts
|
|
];
|
|
fonts.enableDefaultPackages = true;
|
|
}
|