build-clan: fix specialArgs not passed
This commit is contained in:
@@ -6,10 +6,10 @@
|
||||
...
|
||||
}:
|
||||
let
|
||||
eval = import ./eval.nix { inherit lib nixpkgs clan-core; };
|
||||
|
||||
self = ./.;
|
||||
evalClan = eval { inherit self; };
|
||||
evalClan = import ./eval.nix {
|
||||
inherit lib nixpkgs clan-core;
|
||||
self = ./.;
|
||||
};
|
||||
|
||||
in
|
||||
#######
|
||||
@@ -131,4 +131,22 @@ in
|
||||
"machine2"
|
||||
];
|
||||
};
|
||||
|
||||
test_buildClan_specialArgs =
|
||||
let
|
||||
result = buildClan {
|
||||
directory = ./.;
|
||||
meta.name = "test";
|
||||
specialArgs.foo = "dream2nix";
|
||||
machines.machine2 =
|
||||
{ foo, ... }:
|
||||
{
|
||||
networking.hostName = foo;
|
||||
};
|
||||
};
|
||||
in
|
||||
{
|
||||
expr = result.nixosConfigurations.machine2.config.networking.hostName;
|
||||
expected = "dream2nix";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user