38 lines
762 B
Nix
38 lines
762 B
Nix
{ pkgs, inputs, ... }: {
|
|
|
|
fonts = {
|
|
packages = with pkgs; [
|
|
roboto
|
|
work-sans
|
|
comic-neue
|
|
source-sans
|
|
comfortaa
|
|
inter
|
|
lato
|
|
lexend
|
|
jost
|
|
dejavu_fonts
|
|
noto-fonts
|
|
noto-fonts-cjk-sans
|
|
noto-fonts-color-emoji
|
|
victor-mono
|
|
nerd-fonts.victor-mono
|
|
nerd-fonts.fira-code
|
|
nerd-fonts.meslo-lg
|
|
openmoji-color
|
|
twemoji-color-font
|
|
];
|
|
|
|
enableDefaultPackages = false;
|
|
|
|
fontconfig = {
|
|
defaultFonts = {
|
|
monospace = [ "FiraCode Nerd Font Mono" "Noto Color Emoji" ];
|
|
sansSerif = [ "Inter Display" "Noto Color Emoji" ];
|
|
serif = [ "Noto Serif" "Noto Color Emoji" ];
|
|
emoji = [ "Noto Color Emoji" ];
|
|
};
|
|
};
|
|
};
|
|
}
|