From 90b2fb2803c8554a162d035406964841c3e76cd3 Mon Sep 17 00:00:00 2001 From: Alejandro Diaz Date: Mon, 11 Sep 2023 03:06:01 -0600 Subject: [PATCH] fix socket config uwsgi --- triviOS/web.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/triviOS/web.nix b/triviOS/web.nix index c17687b..2f63bdf 100644 --- a/triviOS/web.nix +++ b/triviOS/web.nix @@ -13,7 +13,6 @@ locations = { "/".extraConfig = '' uwsgi_pass unix://${config.services.uwsgi.runDir}/uwsgi.sock; - include uwsgi_params; ''; }; }; @@ -29,6 +28,7 @@ pythonPackages = py: [ py.callPackage ../ui { } ]; module = "homemanager.wsgi"; + socket = "${config.services.uwsgi.runDir}/uwsgi.sock"; }; }; };