25 lines
467 B
Nix
25 lines
467 B
Nix
{ pkgs, lib, ... }:
|
|
|
|
{
|
|
fonts = {
|
|
fontconfig = {
|
|
enable = true;
|
|
|
|
defaultFonts = {
|
|
emoji = [ "Twitter Color Emoji" "Joypixels" ];
|
|
};
|
|
};
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
noto-fonts
|
|
noto-fonts-cjk-sans
|
|
liberation_ttf
|
|
fira-code
|
|
fira-code-symbols
|
|
mplus-outline-fonts.githubRelease
|
|
dina-font
|
|
twitter-color-emoji
|
|
] ++ builtins.filter lib.attrsets.isDerivation (builtins.attrValues pkgs.nerd-fonts);
|
|
}
|