fix: rename folder lib/tests -> lib/test to be consistent with the attribute name

This commit is contained in:
Johannes Kirschbauer
2025-04-16 10:04:31 +02:00
parent 7dec3b8117
commit 7bdb2cabf9
2 changed files with 0 additions and 0 deletions

11
lib/test/minify.nix Normal file
View File

@@ -0,0 +1,11 @@
# This is a module to reduce the size of the NixOS configuration
# Used by the tests
# It unsets some unnecessary options
{ lib, ... }:
{
nixpkgs.flake.setFlakeRegistry = false;
nixpkgs.flake.setNixPath = false;
nix.registry = lib.mkForce { };
documentation.doc.enable = false;
documentation.man.enable = false;
}