forked from fediversity/fediversity
16 lines
234 B
Nix
16 lines
234 B
Nix
{
|
|
pkgs,
|
|
sources,
|
|
}:
|
|
pkgs.testers.runNixOSTest {
|
|
node.specialArgs = {
|
|
inherit
|
|
sources
|
|
pkgs
|
|
;
|
|
modulesPath = "${builtins.toString pkgs.path}/nixos/modules";
|
|
};
|
|
imports = [
|
|
./proxmoxTest.nix
|
|
];
|
|
}
|