about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ci-builds.nix2
-rw-r--r--nix/readTree/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/ci-builds.nix b/ci-builds.nix
index 51fa11bd45..78aadf1d61 100644
--- a/ci-builds.nix
+++ b/ci-builds.nix
@@ -68,7 +68,7 @@ in lib.fix (self: {
     nix.test-vm
     openldap
     rapidcheck
-  ] ++ builtins.attrValues lisp;
+  ];
 
   gerrit = with depot.third_party.gerrit_plugins; [
     depot.third_party.gerrit
diff --git a/nix/readTree/default.nix b/nix/readTree/default.nix
index 9793310eed..3ceb032991 100644
--- a/nix/readTree/default.nix
+++ b/nix/readTree/default.nix
@@ -70,5 +70,5 @@ let
       }) nixFiles;
     in if dir ? "default.nix"
       then (if isAttrs self then self // (listToAttrs children) else self)
-      else listToAttrs (nixChildren ++ children);
+      else (listToAttrs (nixChildren ++ children) // { __readTree = true; });
 in readTree initPath [ (baseNameOf initPath) ]