home/shellAliases: fix eval against NixOS 25.11

This commit is contained in:
2025-10-24 11:43:40 +09:00
parent 6158692b97
commit d99347f708

View File

@@ -78,9 +78,7 @@
type = " ";
alias = [ str ];
};
in (coercedTo str coerce rawAliasType) // {
check = v: builtins.isString v || formatLib.isAlias v;
};
in addCheck (coercedTo str coerce rawAliasType) (v: builtins.isString v || formatLib.isAlias v);
aliasTreeType = with lib.types; attrsOf (either coercedAliasType aliasTreeType) // {
description = "Alias tree";