From 21b4e0461333d10f1cff344018d9dd3a8f67dddd Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Thu, 25 Dec 2025 20:27:13 +0100 Subject: [PATCH] nebula: Rename options for public key and certificate paths for clarity --- modules/system/services/nebula/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/system/services/nebula/default.nix b/modules/system/services/nebula/default.nix index 9ae8915..54c0884 100644 --- a/modules/system/services/nebula/default.nix +++ b/modules/system/services/nebula/default.nix @@ -42,11 +42,11 @@ in default = if cfg.routableAddress != null then 47141 else null; }; - pubPath = lib.mkOption { + publicKeyPath = lib.mkOption { type = lib.types.path; default = "${self}/hosts/${hostname}/keys/nebula.pub"; }; - certPath = lib.mkOption { + certificatePath = lib.mkOption { type = lib.types.path; default = "${self}/hosts/${hostname}/keys/nebula.crt"; }; @@ -69,7 +69,7 @@ in enable = true; ca = ./ca.crt; - cert = cfg.certPath; + cert = cfg.certificatePath; key = config.sops.secrets."nebula/host-key".path; listen.port = cfg.routablePort;