summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/networking/firefox-syncserver.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/networking/firefox-syncserver.nix')
-rw-r--r--nixos/modules/services/networking/firefox-syncserver.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/nixos/modules/services/networking/firefox-syncserver.nix b/nixos/modules/services/networking/firefox-syncserver.nix
index c3d9f43f7457..d9e42ab7aea3 100644
--- a/nixos/modules/services/networking/firefox-syncserver.nix
+++ b/nixos/modules/services/networking/firefox-syncserver.nix
@@ -11,8 +11,10 @@ let
format = pkgs.formats.toml {};
settings = {
- database_url = dbURL;
human_logs = true;
+ syncstorage = {
+ database_url = dbURL;
+ };
tokenserver = {
node_type = "mysql";
database_url = dbURL;
@@ -253,7 +255,7 @@ in
serviceConfig = {
User = defaultUser;
Group = defaultUser;
- ExecStart = "${cfg.package}/bin/syncstorage --config ${configFile}";
+ ExecStart = "${cfg.package}/bin/syncserver --config ${configFile}";
Stderr = "journal";
EnvironmentFile = lib.mkIf (cfg.secrets != null) "${cfg.secrets}";