From 4ae53fe70199be24fa18f84fd894b69dc0c33985 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Thu, 2 Jan 2025 10:17:16 -0700 Subject: [PATCH] Add sovr session secret to sovr-server config --- sovr/etc/nixos/configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sovr/etc/nixos/configuration.nix b/sovr/etc/nixos/configuration.nix index 24e3489..e9f7544 100644 --- a/sovr/etc/nixos/configuration.nix +++ b/sovr/etc/nixos/configuration.nix @@ -50,7 +50,10 @@ network.enable = true; }; services.openssh.enable = true; - services.sovr-server.enable = true; + services.sovr-server = { + enable = true; + sessionSecret = "secret"; + }; systemd.network.enable = true;