From 761872493aa2438c5e86030f22e704815d1d2626 Mon Sep 17 00:00:00 2001 From: Philip Peterson <1326208+philip-peterson@users.noreply.github.com> Date: Sat, 21 Dec 2024 08:03:58 -0500 Subject: [PATCH] fix syncio --- nixos/linux.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos/linux.nix b/nixos/linux.nix index c9cf284..c027f4b 100644 --- a/nixos/linux.nix +++ b/nixos/linux.nix @@ -171,9 +171,12 @@ in { "sync.io" = { autoStart = true; image = "quineglobal/sync.io@sha256:cbb180301fde42d8d22c26c952a4d4a487469d6491465302d8d79ebf194813b3"; - volumes = [ ]; + volumes = [ + "/var/syncio-cache:/sync.io-cache" + ]; environment = {}; ports = ["9090:8080"]; + user = "0"; # run as root }; }; };