From 1cd73831d4062f98a88518bc7e7882056870e8dd Mon Sep 17 00:00:00 2001 From: Ryan Lahfa Date: Wed, 14 Feb 2024 04:09:09 +0100 Subject: [PATCH] profiles/matrix: add sqlite to explore databases MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit god… Signed-off-by: Ryan Lahfa --- profiles/matrix-server.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/profiles/matrix-server.nix b/profiles/matrix-server.nix index 9a90b3e..70aed6d 100644 --- a/profiles/matrix-server.nix +++ b/profiles/matrix-server.nix @@ -14,7 +14,8 @@ in { LC_CTYPE = "C"; ''; - environment.systemPackages = [ pkgs.matrix-synapse ]; + # Surgical operations for various databases. + environment.systemPackages = [ pkgs.matrix-synapse pkgs.sqlite ]; services.nginx = { enable = true; recommendedTlsSettings = true;