aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/services/nebula.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/services/nebula.nix b/modules/services/nebula.nix
new file mode 100644
index 0000000..3f8c38a
--- /dev/null
+++ b/modules/services/nebula.nix
@@ -0,0 +1,18 @@
+{ config, options, lib, ... }:
+
+with lib;
+let
+ cfg = config.modules.services.nebula;
+in
+{
+ options.modules.services.nebula = {
+ enable = mkEnableOption "Configure a single-network Nebula";
+
+ networks = options.services.nebula.networks;
+ };
+
+ config = mkIf cfg.enable {
+ # The module is enabled when one or more module is enabled.
+ services.nebula.networks = cfg.networks;
+ };
+}