1
0
Fork 0

Use correct python version

This commit is contained in:
clerie 2021-12-07 19:10:14 +01:00
parent 0f62e84479
commit b62198e7a0
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ in {
WETTER_SETTINGS = "${configFile}";
};
script = "gunicorn -w 4 -b [::1]:8234 wetter:app";
path = with pkgs; [ (python38.withPackages (ps: [ ps.gunicorn wetter ])) ];
path = with pkgs; [ (python3.withPackages (ps: [ ps.gunicorn wetter ])) ];
};
services.nginx.virtualHosts = {