forked from Fediversity/Fediversity
13 lines
276 B
Nix
13 lines
276 B
Nix
{
|
|
system,
|
|
config_nix,
|
|
config_tf,
|
|
}:
|
|
import ../../nixos.nix {
|
|
inherit system;
|
|
configuration =
|
|
(import ../common/data-model.nix {
|
|
inherit system;
|
|
config = config_nix // builtins.fromJSON config_tf;
|
|
})."tf-deployment".tf-host.nixos-configuration;
|
|
}
|