alqueva/hosts/python/fonts.nix
Artur Manuel be97ef1692
refactor(wrappers): remove wrapping
As much as I prefer wrappers, I feel like it is too much work to set them up because no one likes standards...
2025-02-25 20:53:51 +00:00

23 lines
533 B
Nix

{pkgs, ...}: let
comfy = pkgs.iosevka-comfy;
in {
alqueva.system.fonts = {
names = {
sansSerif = ["Iosevka Comfy"];
monospace = ["Iosevka Comfy Fixed"];
serif = ["IBM Plex Serif"];
emoji = ["Twitter Color Emoji"];
};
packages = {
sansSerif = [comfy.comfy];
monospace = [comfy.comfy-fixed];
serif = [pkgs.ibm-plex];
emoji = [pkgs.twemoji-color-font];
extra = [
pkgs.noto-fonts
pkgs.nerd-fonts.symbols-only
];
};
enable = true;
};
}