mirror of
https://github.com/davegallant/nix-config
synced 2025-08-06 11:23:40 +00:00
23 lines
421 B
Nix
23 lines
421 B
Nix
{pkgs, ...}: {
|
|
fonts.packages = with pkgs; [
|
|
dejavu_fonts
|
|
fira-code
|
|
fira-code-symbols
|
|
fira-mono
|
|
font-awesome
|
|
google-fonts
|
|
liberation_ttf
|
|
noto-fonts
|
|
noto-fonts-cjk
|
|
noto-fonts-emoji
|
|
noto-fonts-extra
|
|
];
|
|
|
|
fonts.fontconfig.defaultFonts = {
|
|
sansSerif = ["Noto Sans"];
|
|
serif = ["Noto Serif"];
|
|
monospace = ["Noto Sans Mono"];
|
|
emoji = ["Noto Color Emoji"];
|
|
};
|
|
}
|