1
0
Fork 0

Use correct python environment

This commit is contained in:
clerie 2021-12-07 18:29:16 +01:00
parent 1540443a5b
commit 5b4d3bca76
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ in {
Group = "uptimestatus";
};
script = "gunicorn -w 4 -b [::1]:8235 uptimestatus:app";
path = with pkgs; [ (python38.withPackages (ps: [ ps.gunicorn uptimestatus ])) ];
path = with pkgs; [ (python3.withPackages (ps: [ ps.gunicorn uptimestatus ])) ];
};
services.nginx = {