From bbdf38018b47328b5faa2cef635c37095045be72 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Fri, 12 Jun 2026 01:54:21 +0200 Subject: feat(server): Really make users stateless (with tests) This commit also remove another load of unneeded features. --- tests/common/dns/client.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/common/dns/client.nix (limited to 'tests/common/dns/client.nix') diff --git a/tests/common/dns/client.nix b/tests/common/dns/client.nix new file mode 100644 index 00000000..52f32671 --- /dev/null +++ b/tests/common/dns/client.nix @@ -0,0 +1,10 @@ +{ + lib, + nodes, + ... +}: { + networking.nameservers = lib.mkForce [ + nodes.name_server.networking.primaryIPAddress + nodes.name_server.networking.primaryIPv6Address + ]; +} -- cgit v1.3.1