From e28e2cb4bfdd19c11e3756495b957c188d8eb6b1 Mon Sep 17 00:00:00 2001 From: Inex Code Date: Mon, 11 Nov 2024 06:31:48 +0300 Subject: [PATCH] fix memray call --- nixos/module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/module.nix b/nixos/module.nix index b982b5f..2de7902 100644 --- a/nixos/module.nix +++ b/nixos/module.nix @@ -51,7 +51,7 @@ in wantedBy = [ "network-online.target" ]; serviceConfig = { User = "root"; - ExecStart = "${pkgs.memray}/bin/memray --trace-python-allocators --live-remote ${selfprivacy-graphql-api}/bin/app.py"; + ExecStart = "${pkgs.memray}/bin/memray run --trace-python-allocators --live-remote ${selfprivacy-graphql-api}/bin/app.py"; Restart = "always"; RestartSec = "5"; };