alqueva/hosts/python/fonts.nix
Artur Manuel c4a290ae63 feat(wrappers): start wrapping configs
thanks to @fdncred for the ls function with nushell
2025-01-31 21:38:32 +00:00

21 lines
488 B
Nix

{pkgs, ...}: {
alqueva.system.fonts = {
names = {
sansSerif = ["IBM Plex Sans"];
monospace = ["IBM Plex Mono"];
serif = ["IBM Plex Serif"];
emoji = ["Twitter Color Emoji"];
};
packages = {
sansSerif = [pkgs.ibm-plex];
monospace = [pkgs.ibm-plex];
serif = [pkgs.ibm-plex];
emoji = [pkgs.twemoji-color-font];
extra = [
pkgs.noto-fonts
pkgs.nerd-fonts.symbols-only
];
};
enable = true;
};
}