aboutsummaryrefslogtreecommitdiffstats
path: root/apps/grafana/appspec.nix
diff options
context:
space:
mode:
authorLibravatar Alexander Foremny <aforemny@posteo.de>2024-03-02 14:44:52 +0100
committerLibravatar Alexander Foremny <aforemny@posteo.de>2024-03-04 06:36:25 +0100
commitfa7f399067828aa8f4171c9d3e68669ecf0b72ec (patch)
tree0654bfb3b7d29bf96c50ab06cd5ec61b9084aea3 /apps/grafana/appspec.nix
parent15c6afa0332855ae59dff40fcd359937127a24f0 (diff)
grafana: init
Diffstat (limited to 'apps/grafana/appspec.nix')
-rw-r--r--apps/grafana/appspec.nix9
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;
+ };
+ };
+}