oizys/lib/extended.nix

14 lines
327 B
Nix
Raw Normal View History

2024-02-27 10:41:27 -06:00
final: prev: let
2024-03-01 00:26:52 -06:00
inherit (final) hasSuffix;
2024-02-27 10:41:27 -06:00
runes = import ../modules/runes;
in {
2024-03-01 00:26:52 -06:00
isNixFile = path: hasSuffix ".nix" path;
2024-02-27 10:41:27 -06:00
mkIfIn = name: list: prev.mkIf (builtins.elem name list);
mkRune = {
rune,
number ? "6",
runeKind ? "braille",
}:
"[1;3${number}m\n" + runes.${rune}.${runeKind} + "\n";
}