# nixos-config - My current NixOS configuration # # Copyright (C) 2025 Benedikt Peetz # SPDX-License-Identifier: GPL-3.0-or-later # # This file is part of my nixos-config. # # You should have received a copy of the License along with this program. # If not, see . { lib, nixLib, pkgs, myPkgs, nixpkgs_as_input, sysLib, extraModules, nixpkgs_open_prs, system, }: let mkTest = import ./infrastructure { inherit pkgs lib nixos-lib myPkgs extraModules sysLib nixpkgs_open_prs system ; }; nixos-lib = import (nixpkgs_as_input + "/nixos/lib") {}; tests = nixLib.mkByName { baseDirectory = ./by-name; fileName = "test.nix"; finalizeFunction = name: value: import value { inherit mkTest extraModules pkgs myPkgs ; }; }; in tests