mirror of
https://github.com/caperren/nixos-configs.git
synced 2025-11-08 11:41:14 +00:00
21 lines
419 B
Nix
21 lines
419 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
fonts.fontDir.enable = true;
|
|
fonts.fontconfig.enable = true;
|
|
fonts.fontconfig.antialias = true;
|
|
fonts.packages = with pkgs; [
|
|
noto-fonts
|
|
noto-fonts-emoji
|
|
liberation_ttf
|
|
fira-code
|
|
fira-code-symbols
|
|
jetbrains-mono
|
|
mplus-outline-fonts.githubRelease
|
|
dina-font
|
|
proggyfonts
|
|
font-awesome
|
|
nerd-fonts.symbols-only
|
|
nerd-fonts.jetbrains-mono
|
|
];
|
|
}
|