From 16acf79ba856dadcd5bf5a74aa840bd0dc4693a7 Mon Sep 17 00:00:00 2001 From: UGA Innovation Factory Date: Thu, 18 Dec 2025 16:14:04 -0500 Subject: [PATCH] run as root for usda dashboard service --- default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/default.nix b/default.nix index 5a88c47..41c3ca2 100644 --- a/default.nix +++ b/default.nix @@ -137,6 +137,8 @@ in Type = "oneshot"; RemainAfterExit = true; WorkingDirectory = "${usda-vision-app}/opt/usda-vision"; + User = "root"; + Group = "root"; # Start: pull latest images and start containers ExecStart = "${pkgs.docker-compose}/bin/docker-compose up -d --build";