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 - ])) - ]; -}