mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
39 lines
593 B
Nix
Executable file
39 lines
593 B
Nix
Executable file
{
|
|
pkgs,
|
|
flake,
|
|
...
|
|
}: let
|
|
inherit
|
|
(flake.config.aesthetics.themes.theme)
|
|
font
|
|
;
|
|
in {
|
|
fonts = {
|
|
fontconfig = {
|
|
enable = true;
|
|
defaultFonts = {
|
|
serif = [
|
|
font
|
|
];
|
|
monospace = [
|
|
font
|
|
];
|
|
sansSerif = [
|
|
font
|
|
];
|
|
emoji = ["Noto Fonts Color Emoji"];
|
|
};
|
|
antialias = true;
|
|
};
|
|
packages = builtins.attrValues {
|
|
inherit
|
|
(pkgs)
|
|
noto-fonts-color-emoji
|
|
;
|
|
inherit
|
|
(pkgs.nerd-fonts)
|
|
monaspace
|
|
;
|
|
};
|
|
};
|
|
}
|