add shorthands

This commit is contained in:
Kiara Grouwstra 2025-06-17 22:55:10 +02:00
parent b3f77d4bb0
commit a0cfdffbdc
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU

View file

@ -34,4 +34,7 @@ rec {
template_json = options: template_generator (lib.generators.toJSON options);
template_yaml = options: template_generator (lib.generators.toYAML options); # just json
template_ini = options: template_generator (lib.generators.toINI options);
template_json' = template_json { };
template_yaml' = template_yaml { };
template_ini' = template_ini { };
}