mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 17:45:12 -05:00
43 lines
685 B
Nix
Executable file
43 lines
685 B
Nix
Executable file
{
|
|
pkgs,
|
|
flake,
|
|
...
|
|
}:
|
|
let
|
|
inherit (flake.config.aesthetics.themes)
|
|
fonts
|
|
;
|
|
in
|
|
{
|
|
fonts = {
|
|
fontconfig = {
|
|
enable = true;
|
|
defaultFonts = {
|
|
serif = [
|
|
fonts.names.name0
|
|
];
|
|
monospace = [
|
|
fonts.names.name0
|
|
];
|
|
sansSerif = [
|
|
fonts.names.name0
|
|
];
|
|
emoji = [
|
|
"Noto Fonts Color Emoji"
|
|
];
|
|
};
|
|
antialias = true;
|
|
};
|
|
packages = builtins.attrValues {
|
|
inherit (pkgs)
|
|
noto-fonts-color-emoji
|
|
dosis
|
|
iosevka
|
|
;
|
|
inherit (pkgs.nerd-fonts)
|
|
monaspace
|
|
fantasque-sans-mono
|
|
;
|
|
};
|
|
};
|
|
}
|