feat: glance test

This commit is contained in:
Nick 2025-07-03 20:16:56 -05:00
parent c667b34f37
commit d2550deac3

View file

@ -1,8 +1,10 @@
{ config, flake, ... }: { config, flake, ... }:
let let
inherit (flake.config.services.instances) wireGuard searx; inherit (flake.config.services) instances;
inherit (flake.config.machines.devices) mars deimos ceres; inherit (flake.config.machines.devices) mars deimos ceres;
service = wireGuard; service = instances.wireGuard;
searx = instances.searx;
glance = instances.glance;
in in
{ {
networking = { networking = {
@ -16,6 +18,7 @@ in
]; ];
interfaces.wg0.allowedTCPPorts = [ interfaces.wg0.allowedTCPPorts = [
searx.ports.port0 searx.ports.port0
glance.ports.port0
]; ];
}; };