forked from fediversity/fediversity
rm optional from deployer
Signed-off-by: Kiara Grouwstra <kiara@procolix.eu>
This commit is contained in:
parent
8e17e8bc9b
commit
67c115f4f6
1 changed files with 12 additions and 14 deletions
|
|
@ -74,20 +74,18 @@ in
|
|||
## configuration and the store paths needed to build it and
|
||||
## dump them in `system.extraDependencies`.
|
||||
machine =
|
||||
(pkgs.nixos (
|
||||
[
|
||||
./targetNode.nix
|
||||
# ../../../infra/common/nixos/repart.nix
|
||||
config.system.extraDependenciesFromModule
|
||||
{
|
||||
nixpkgs.hostPlatform = "x86_64-linux";
|
||||
_module.args = { inherit inputs sources; };
|
||||
enableAcme = config.enableAcme;
|
||||
acmeNodeIP = config.acmeNodeIP;
|
||||
}
|
||||
]
|
||||
++ (lib.optional config.useFlake "${modulesPath}/../lib/testing/nixos-test-base.nix")
|
||||
)).config;
|
||||
(pkgs.nixos [
|
||||
./targetNode.nix
|
||||
# ../../../infra/common/nixos/repart.nix
|
||||
"${modulesPath}/../lib/testing/nixos-test-base.nix"
|
||||
config.system.extraDependenciesFromModule
|
||||
{
|
||||
nixpkgs.hostPlatform = "x86_64-linux";
|
||||
_module.args = { inherit inputs sources; };
|
||||
enableAcme = config.enableAcme;
|
||||
acmeNodeIP = config.acmeNodeIP;
|
||||
}
|
||||
]).config;
|
||||
|
||||
in
|
||||
[
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue