change python config

This commit is contained in:
Frost-Phoenix 2024-03-15 18:16:48 +01:00
parent 68de3d6549
commit 88d9249dfb
3 changed files with 3 additions and 11 deletions

View file

@ -18,7 +18,6 @@ in
++ [ (import ./network.nix) ]
++ [ (import ./pipewire.nix) ]
++ [ (import ./program.nix) ]
++ [ (import ./../home/package/python.nix) ]
++ [ (import ./security.nix) ]
++ [ (import ./services.nix) ]
++ [ (import ./system.nix) ]

View file

@ -14,7 +14,6 @@
pipx # Install Python applications in isolated environments
prismlauncher # minecraft launcher
ripgrep # grep replacement
rnix-lsp
soundwireserver # pass audio to android phone
todo # cli todo list
toipe # typing test in the terminal
@ -27,6 +26,9 @@
gcc
gnumake
# Python
python3
bleachbit # cache cleaner
cmatrix
gparted # partition manager

View file

@ -1,9 +0,0 @@
{pkgs, ...}:
{
environment.systemPackages = with pkgs; [
(python311Full.withPackages(ps: with ps; [
requests
pygame
]))
];
}