Fix missed reference to Python 3.8

This commit is contained in:
Tim Van Baak 2024-06-28 15:55:35 +00:00
parent 29740d5864
commit 40464e9078
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ in {
let
# Define the intake package and a python environment to run it from
intake = intakeCfg.package;
pythonEnv = pkgs.python38.withPackages (pypkgs: [ intake ]);
pythonEnv = pkgs.python3.withPackages (pypkgs: [ intake ]);
# Assign each user an internal port for their personal intake instance
enabledUsers = filterAttrs (userName: userCfg: userCfg.enable) intakeCfg.users;