From b62198e7a0b21a6e919b051b40afe870ee92389e Mon Sep 17 00:00:00 2001 From: clerie Date: Tue, 7 Dec 2021 19:10:14 +0100 Subject: [PATCH] Use correct python version --- hosts/web-2/wetter.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/web-2/wetter.nix b/hosts/web-2/wetter.nix index 19a5335..a3fec4b 100644 --- a/hosts/web-2/wetter.nix +++ b/hosts/web-2/wetter.nix @@ -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 = {