From 5927514776606f9e3eaa507dc554fd3df2aaa295 Mon Sep 17 00:00:00 2001 From: Danila Danko Date: Fri, 19 Jan 2024 05:55:49 +0300 Subject: [PATCH] feat: add devshells and docs to checks --- flake.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 980d2998..c1cf488f 100644 --- a/flake.nix +++ b/flake.nix @@ -74,7 +74,12 @@ checks = with pkgs.lib; - pipe (import ./tests { inherit pkgs; }) [ + pipe { } [ + (x: + x // (import ./tests { inherit pkgs; }) + // devShells + // { inherit (devshell.modules-docs) markdown; } + ) (collect isDerivation) (map (x: { name = x.name or x.pname; value = x; })) listToAttrs