From fa35a9411b614084b819c275d89b00ae1f5463ab Mon Sep 17 00:00:00 2001 From: Ahmad Ansori Palembani Date: Fri, 7 Mar 2025 14:06:00 +0700 Subject: [PATCH] fix(nix): Disable pip and dnspython Broken packages and not sure what dnspython is used for --- nix/lib/mkCommon.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/lib/mkCommon.nix b/nix/lib/mkCommon.nix index 8b66419..6f74d5b 100644 --- a/nix/lib/mkCommon.nix +++ b/nix/lib/mkCommon.nix @@ -3,9 +3,9 @@ let custom = { python = (pkgs.python312Full.withPackages (py: [ - py.pip + #py.pip py.tkinter - py.dnspython + #py.dnspython ])); }; custom.inkscape =