From 2f2140f9aed3085796828a571db47bc88a2b1769 Mon Sep 17 00:00:00 2001 From: Leonhard Kost Date: Mon, 23 Feb 2026 14:05:00 +0100 Subject: [PATCH] feat: add domain option --- options.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/options.nix b/options.nix index 5b821b1..aaa2fd6 100644 --- a/options.nix +++ b/options.nix @@ -4,6 +4,11 @@ }: { options.kekleo = with lib.types; { + domain = lib.mkOption { + type = str; + default = ""; + description = "Domain of the device."; + }; publicKeys = lib.mkOption { type = listOf str; default = [ ];