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, pkgs,
python ? pkgs.python39, python ? pkgs.python310,
nodejs ? pkgs.nodejs, nodejs ? pkgs.nodejs,
...}: ...}:
let let

View File

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