26 lines
661 B
Nix
26 lines
661 B
Nix
|
{ config, options, lib, ... }:
|
||
|
let
|
||
|
inherit (lib) mkIf mkOption types;
|
||
|
in
|
||
|
{
|
||
|
# This needs options.warnings, which we don't have (yet?).
|
||
|
# imports = [
|
||
|
# (lib.mkRenamedOptionModule [ "machine" ] [ "nodes" "machine" ])
|
||
|
# ];
|
||
|
|
||
|
options = {
|
||
|
machine = mkOption {
|
||
|
internal = true;
|
||
|
type = types.raw;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = {
|
||
|
nodes = mkIf options.machine.isDefined (
|
||
|
lib.warn
|
||
|
"In test `${config.name}': The `machine' attribute in NixOS tests (pkgs.nixosTest / make-test-python.nix / testing-python.nix / makeTest) is deprecated. Please set the equivalent `nodes.machine'."
|
||
|
{ inherit (config) machine; }
|
||
|
);
|
||
|
};
|
||
|
}
|