19 lines
462 B
Nix
19 lines
462 B
Nix
![]() |
{pkgs, ...}: {
|
||
|
alqueva.fonts = {
|
||
|
names = {
|
||
|
sansSerif = ["Iosevka Comfy Wide Fixed"];
|
||
|
monospace = ["Iosevka Comfy Wide Fixed"];
|
||
|
serif = ["Iosevka Comfy Wide Motion Fixed"];
|
||
|
};
|
||
|
packages = builtins.attrValues {
|
||
|
inherit
|
||
|
(pkgs.iosevka-comfy)
|
||
|
comfy-wide-fixed
|
||
|
comfy-wide-motion-fixed
|
||
|
;
|
||
|
nerdfonts = pkgs.nerdfonts.override {fonts = ["NerdFontsSymbolsOnly"];};
|
||
|
};
|
||
|
enable = true;
|
||
|
};
|
||
|
}
|