update python to 3.10

master
TuxCoder 2022-06-17 13:39:03 +02:00
parent 161df8a473
commit 45c61a06ef
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
pkgs,
python ? pkgs.python39,
python ? pkgs.python310,
nodejs ? pkgs.nodejs,
...}:
let

View File

@ -1,6 +1,6 @@
{
pkgs ? import <nixpkgs> {},
python ? pkgs.python39
python ? pkgs.python310
}:
let
settings = import ./default.nix {inherit pkgs python;};