data model: add TF test #4

Closed
kiara wants to merge 76 commits from data-model-tf-test into main
Showing only changes of commit 4509d277d3 - Show all commits

View file

@ -23,21 +23,17 @@ let
makeResourceModule =
{ vmName, isTestVm }:
{
# TODO(@fricklerhandwerk): this is terrible but IMO we should just ditch flake-parts and have our own data model for how the project is organised internally
_module.args = {
inherit
inputs
keys
secrets
;
};
nixos.module.imports = [
./common/proxmox-qemu-vm.nix
];
nixos.specialArgs = {
inherit sources;
inherit
sources
inputs
keys
secrets
;
};
imports =
@ -79,7 +75,13 @@ let
# TODO(@fricklerhandwerk): we may want to pass through all of `specialArgs`
# once we're sure it's sane. leaving it here for better control during refactoring.
specialArgs = {
inherit sources;
inherit
sources
inputs
keys
secrets
;
};
});
};