From 88d9249dfb1efaa0b28dce7af853cc6cb528b099 Mon Sep 17 00:00:00 2001 From: Frost-Phoenix <67cyril6767@gmail.com> Date: Fri, 15 Mar 2024 18:16:48 +0100 Subject: [PATCH] change python config --- modules/core/default.nix | 1 - modules/home/package/default.nix | 4 +++- modules/home/package/python.nix | 9 --------- 3 files changed, 3 insertions(+), 11 deletions(-) delete mode 100644 modules/home/package/python.nix diff --git a/modules/core/default.nix b/modules/core/default.nix index cde622d..4b8df7d 100644 --- a/modules/core/default.nix +++ b/modules/core/default.nix @@ -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) ] diff --git a/modules/home/package/default.nix b/modules/home/package/default.nix index 147801a..235226d 100644 --- a/modules/home/package/default.nix +++ b/modules/home/package/default.nix @@ -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 diff --git a/modules/home/package/python.nix b/modules/home/package/python.nix deleted file mode 100644 index 35561f3..0000000 --- a/modules/home/package/python.nix +++ /dev/null @@ -1,9 +0,0 @@ -{pkgs, ...}: -{ - environment.systemPackages = with pkgs; [ - (python311Full.withPackages(ps: with ps; [ - requests - pygame - ])) - ]; -}