29 lines
604 B
Nix
29 lines
604 B
Nix
{ pkgs, ... }: {
|
|
fonts = {
|
|
packages = with pkgs; ([
|
|
# fira-code
|
|
# fira-code-symbols
|
|
noto-fonts-emoji
|
|
]
|
|
++ (with nerd-fonts; [
|
|
fira-code
|
|
fira-sans
|
|
fira-mono
|
|
noto
|
|
font-awesome
|
|
cozette
|
|
source-han-sans
|
|
ubuntu
|
|
]));
|
|
|
|
fontconfig = {
|
|
defaultFonts = {
|
|
monospace = ["FiraCode Nerd Font Mono" "Noto Color Emoji"];
|
|
sansSerif = ["FiraCode Nerd Font" "Noto Color Emoji"];
|
|
serif = ["FiraCode Nerd Font" "Noto Color Emoji"];
|
|
emoji = ["Noto Color Emoji"];
|
|
};
|
|
};
|
|
};
|
|
}
|