nixlets/template/values.nix

15 lines
260 B
Nix
Raw Normal View History

2024-03-06 10:23:25 +00:00
{
lib,
utils,
2024-05-08 17:09:17 +00:00
nixlet,
2024-03-06 10:23:25 +00:00
...
}:
2024-05-08 17:09:17 +00:00
with lib;
with utils;
with nixlet; {
2024-03-06 10:23:25 +00:00
# for some basic values see https://github.com/helm/examples/blob/4888ba8fb8180dd0c36d1e84c1fcafc6efd81532/charts/hello-world/values.yaml
options = {
# define values here
};
}