From d43af1efac5b7bf254e593e2930991122669be0a Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Sun, 14 Dec 2025 14:36:39 +1000 Subject: [PATCH] fix result.nix used instead of res.nix --- nib/types/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nib/types/default.nix b/nib/types/default.nix index 84538cc..d1c309f 100644 --- a/nib/types/default.nix +++ b/nib/types/default.nix @@ -2,14 +2,14 @@ attrs = import ./attrs.nix args; fault = import ./fault.nix args; lists = import ./lists.nix args; - result = import ./result.nix args; + res = import ./res.nix args; in attrs.mergeAttrsList [ # submodule is included directly to this module (ie self.myFunc) attrs fault lists - result + res # submodule content is accessible first by submodule name # then by the name of the content (ie self.submodule.myFunc)