fix(generator): replace gotmpl with gomplate

This commit is contained in:
asimon 2026-01-25 12:15:49 +01:00
parent 5e479f3662
commit a8acaf7143
7 changed files with 12 additions and 12 deletions

View file

@ -50,7 +50,7 @@
# only a passthru
derivation = {data, ...}: data;
gotmpl = {
gomplate = {
name,
opts,
data,

View file

@ -30,7 +30,7 @@ in {
};
generator = mkOption {
type = types.enum ["nix" "string" "derivation" "gotmpl" "jinja" "template"];
type = types.enum ["nix" "string" "derivation" "gomplate" "jinja" "template"];
description = ''
Which engine to use for content generation.
'';