From 7d90bfb7517ecca346787c01fdef16f245c120b8 Mon Sep 17 00:00:00 2001 From: Frost-Phoenix <67cyril6767@gmail.com> Date: Thu, 25 Jan 2024 17:00:44 +0100 Subject: [PATCH] change python config --- modules/home/package/python.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/modules/home/package/python.nix b/modules/home/package/python.nix index 99fd82b..19863bb 100644 --- a/modules/home/package/python.nix +++ b/modules/home/package/python.nix @@ -1,10 +1,12 @@ {pkgs, ...}: { environment.systemPackages = with pkgs; [ - (python311Full.withPackages(ps: with ps; [ - requests - pygame - shapely - ])) + python3 + python311Packages.pip + # (python311Full.withPackages(ps: with ps; [ + # requests + # pygame + # shapely + # ])) ]; }