From 7d69953ffb1d7781734698a2c67674d8c28d697a Mon Sep 17 00:00:00 2001 From: niten Date: Sun, 10 Dec 2023 10:32:13 -0800 Subject: [PATCH] Add `secret-key-file` --- grafana.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/grafana.nix b/grafana.nix index 5a129e4..86b11fc 100644 --- a/grafana.nix +++ b/grafana.nix @@ -46,6 +46,12 @@ in { description = "Path to a file containing the admin user password."; }; + secret-key-file = mkOption { + type = str; + description = + "Path to a file containing a sceret key used for encryption."; + }; + port = mkOption { type = port; description = "Port on which to listen for HTTP requests (on localhost)";