mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-04 21:43:15 -06:00
14 lines
328 B
Nix
14 lines
328 B
Nix
final: prev: let
|
||
inherit (final) hasSuffix;
|
||
runes = import ../modules/runes;
|
||
in {
|
||
|
||
isNixFile = path: hasSuffix ".nix" path;
|
||
mkIfIn = name: list: prev.mkIf (builtins.elem name list);
|
||
mkRune = {
|
||
rune,
|
||
number ? "6",
|
||
runeKind ? "braille",
|
||
}:
|
||
"[1;3${number}m\n" + runes.${rune}.${runeKind} + "\n[0m";
|
||
}
|