flake/packages: test all packages by default

This commit is contained in:
Gaetan Lepage 2024-01-06 15:55:29 +01:00 committed by Gaétan Lepage
parent 782f2d6150
commit 48b5056d28
2 changed files with 3 additions and 1 deletions

View file

@ -27,7 +27,6 @@
inherit pkgs; inherit pkgs;
inherit (pkgs) lib; inherit (pkgs) lib;
}; };
docs = config.packages.docs ? null;
}; };
}; };
} }

View file

@ -22,5 +22,8 @@
in in
docs docs
// man-docs; // man-docs;
# Test that all packages build fine when running `nix flake check`.
checks = config.packages;
}; };
} }