nix-config/tests/lib.nix
Donovan Glover 41ce56718b
chore: Simplify tests
Removes the redundant `self`.
2024-04-05 11:53:40 -04:00

16 lines
297 B
Nix

test: { self, pkgs }:
let
inherit (pkgs.lib) mkDefault;
nixos-lib = import (pkgs.path + "/nixos/lib") { };
in
(nixos-lib.runTest {
imports = [ test ];
hostPkgs = pkgs;
defaults.documentation.enable = mkDefault false;
node.specialArgs = {
nix-config = self;
};
}).config.result