mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
27 lines
504 B
Nix
Executable file
27 lines
504 B
Nix
Executable file
{pkgs, ...}: {
|
|
fonts = {
|
|
fontconfig = {
|
|
enable = true;
|
|
defaultFonts = {
|
|
# serif = [];
|
|
# monospace = [];
|
|
# sansSerif = [];
|
|
emoji = ["Noto Fonts Color Emoji"];
|
|
};
|
|
antialias = true;
|
|
};
|
|
packages = builtins.attrValues {
|
|
inherit
|
|
(pkgs)
|
|
noto-fonts-color-emoji
|
|
;
|
|
inherit
|
|
(pkgs.nerd-fonts)
|
|
jetbrains-mono
|
|
droid-sans-mono
|
|
victor-mono
|
|
monaspace
|
|
;
|
|
};
|
|
};
|
|
}
|