From d99347f708f007ea2e4fac0552eee652a5155c94 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Fri, 24 Oct 2025 11:43:40 +0900 Subject: [PATCH] home/shellAliases: fix eval against NixOS 25.11 --- home/modules/shellAliases.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/home/modules/shellAliases.nix b/home/modules/shellAliases.nix index d04c5fc..fa759ee 100644 --- a/home/modules/shellAliases.nix +++ b/home/modules/shellAliases.nix @@ -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";