From fcbc0446f11b8555c1204081c23fbd1442534aa0 Mon Sep 17 00:00:00 2001 From: Mel Date: Sun, 31 Aug 2025 17:24:03 +0200 Subject: Clean up & integrate service network configuration into foundation module Signed-off-by: Mel --- modules/foundation/services/default.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 modules/foundation/services/default.nix (limited to 'modules/foundation/services/default.nix') diff --git a/modules/foundation/services/default.nix b/modules/foundation/services/default.nix new file mode 100644 index 0000000..25477b1 --- /dev/null +++ b/modules/foundation/services/default.nix @@ -0,0 +1,16 @@ +{ ... }: + +{ + imports = [ + ./services.nix + ./networks.nix + ]; + + foundation.networks.foundation-default = { + enable = true; + default = true; + + subnet = "2001:d0c:1::/48"; + driver = "bridge"; + }; +} -- cgit 1.4.1