mirror of
https://codeberg.org/leana8959/.files.git
synced 2026-02-01 14:39:39 +00:00
24 lines
404 B
Nix
24 lines
404 B
Nix
{ lib }:
|
|
|
|
let
|
|
list = [
|
|
{ spacing = "normal"; }
|
|
|
|
# Iosevka + Ghostty makes "…" display in a odd way.
|
|
# We use "term" width to avoid this.
|
|
# https://github.com/ghostty-org/ghostty/discussions/10335
|
|
{ spacing = "term"; }
|
|
];
|
|
in
|
|
|
|
map (
|
|
{ spacing }@cfg:
|
|
let
|
|
name = lib.toSentenceCase spacing;
|
|
in
|
|
final: prev:
|
|
cfg
|
|
// {
|
|
family = prev.family + "-${name}";
|
|
}
|
|
) list
|