aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 89a10d7..332eae4 100644
--- a/flake.nix
+++ b/flake.nix
@@ -34,10 +34,10 @@
(_: type: type == "directory")
(builtins.readDir ./zkvms));
- guests = [ null ] ++ (builtins.attrNames
+ guests = builtins.attrNames
(pkgs.lib.filterAttrs
(_: type: type == "directory")
- (builtins.readDir ./guests)));
+ (builtins.readDir ./guests));
foldr = pkgs.lib.foldr;