forked from Fediversity/Fediversity
move imports from paste to targetNode to increase parity between paste and nixosTest
This commit is contained in:
parent
4d85dd96f2
commit
13139a4b4b
2 changed files with 4 additions and 4 deletions
|
@ -3,6 +3,7 @@
|
||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
modulesPath,
|
modulesPath,
|
||||||
|
sources,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -17,7 +18,10 @@ in
|
||||||
imports = [
|
imports = [
|
||||||
(modulesPath + "/profiles/qemu-guest.nix")
|
(modulesPath + "/profiles/qemu-guest.nix")
|
||||||
(modulesPath + "/../lib/testing/nixos-test-base.nix")
|
(modulesPath + "/../lib/testing/nixos-test-base.nix")
|
||||||
|
"${sources.disko}/module.nix"
|
||||||
|
../../../infra/common/proxmox-qemu-vm.nix
|
||||||
./sharedOptions.nix
|
./sharedOptions.nix
|
||||||
|
../../../infra/common/nixos/users.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
config = mkMerge [
|
config = mkMerge [
|
||||||
|
|
4
paste
4
paste
|
@ -9,11 +9,7 @@ command=(nix-instantiate --expr '
|
||||||
sources = import ./npins;
|
sources = import ./npins;
|
||||||
configuration = {
|
configuration = {
|
||||||
imports = [
|
imports = [
|
||||||
./infra/common/proxmox-qemu-vm.nix
|
|
||||||
./infra/common/nixos/users.nix
|
|
||||||
./deployment/check/common/sharedOptions.nix
|
|
||||||
./deployment/check/common/targetNode.nix
|
./deployment/check/common/targetNode.nix
|
||||||
"${sources.disko}/module.nix"
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
eval = import "${sources.nixpkgs}/nixos/lib/eval-config.nix" {
|
eval = import "${sources.nixpkgs}/nixos/lib/eval-config.nix" {
|
||||||
|
|
Loading…
Add table
Reference in a new issue