diff options
Diffstat (limited to 'apps/grafana/appspec.nix')
-rw-r--r-- | apps/grafana/appspec.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/grafana/appspec.nix b/apps/grafana/appspec.nix new file mode 100644 index 0000000..1fe0d38 --- /dev/null +++ b/apps/grafana/appspec.nix @@ -0,0 +1,9 @@ +{ fysilib, lib, ... }: { + description = "Grafana"; + endOfLife = null; + options = { + domain = lib.mkOption { + type = fysilib.types.fqdn; + }; + }; +} |