feat(microvms): remove localWireguard option

This commit is contained in:
oddlama 2023-12-07 16:58:05 +01:00
parent 9f6f3de5e3
commit 4e24271f08
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
6 changed files with 20 additions and 83 deletions

View file

@ -49,8 +49,8 @@ inputs: let
nixosConfigurationsMinimal = flip mapAttrs nixosHosts (mkHost {minimal = true;});
# True NixOS nodes can define additional microvms (guest nodes) that are built
# together with the true host. We collect all defined microvm nodes
# from each node here to allow accessing any node via the unified attribute `nodes`.
# together with it. We collect all defined microvm nodes from each node here
# to allow accessing any node via the unified attribute `nodes`.
microvmConfigurations = flip concatMapAttrs self.nixosConfigurations (_: node:
mapAttrs'
(vm: def: nameValuePair def.nodeName node.config.microvm.vms.${vm}.config)