26 lines
512 B
Nix
26 lines
512 B
Nix
{pkgs, ...}: {
|
|
fonts = {
|
|
packages = with pkgs; [
|
|
noto-fonts
|
|
noto-fonts-cjk-sans
|
|
#noto-fonts-emoji
|
|
nerd-fonts.symbols-only
|
|
liberation_ttf
|
|
font-awesome
|
|
fira
|
|
fira-sans
|
|
fira-code
|
|
fira-code-symbols
|
|
];
|
|
|
|
enableDefaultPackages = true;
|
|
fontconfig = {
|
|
enable = true;
|
|
defaultFonts = {
|
|
sansSerif = ["Fira Sans Regular"];
|
|
serif = ["Fira Sans Regular"];
|
|
monospace = ["Fira Mono Regular"];
|
|
};
|
|
};
|
|
};
|
|
}
|