Skip to content

Commit 6504b13

Browse files
fix(template): replace both kebab and snake cases
Signed-off-by: Cameron Smith <[email protected]>
1 parent 5db48b4 commit 6504b13

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

nix/modules/template.nix

+7-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,15 @@
1212
template = templates.default;
1313
params = [
1414
{
15-
name = "package-name";
16-
description = "Name of the Python package";
15+
name = "package-name-kebab-case";
16+
description = "Name of the Python package (kebab-case)";
1717
placeholder = "python-nix-template";
1818
}
19+
{
20+
name = "package-name-snake-case";
21+
description = "Name of the Python package (snake_case)";
22+
placeholder = "python_nix_template";
23+
}
1924
{
2025
name = "git-org";
2126
description = "GitHub organization or user name";

0 commit comments

Comments
 (0)