From 481b9c4a38455ba6d8502029894f9223ab2545d5 Mon Sep 17 00:00:00 2001 From: technofab Date: Wed, 28 Jan 2026 14:40:22 +0100 Subject: [PATCH] chore(module): remove "template" generator type --- lib/module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/module.nix b/lib/module.nix index 98400e3..91ac9ba 100644 --- a/lib/module.nix +++ b/lib/module.nix @@ -30,7 +30,7 @@ in { }; generator = mkOption { - type = types.enum ["nix" "string" "derivation" "gomplate" "jinja" "mustache" "template"]; + type = types.enum ["nix" "string" "derivation" "gomplate" "jinja" "mustache"]; description = '' Which engine to use for content generation. '';