diff --git a/home/aider.nix b/home/aider.nix index 323b48c..7c52f58 100644 --- a/home/aider.nix +++ b/home/aider.nix @@ -12,7 +12,7 @@ programs.aider-chat = { enable = true; - package = aider-chat-full; + package = pkgs.unstable.aider-chat-full; settings = { architect = true; auto-accept-architect = false; @@ -29,7 +29,7 @@ check-update=false; multiline=true; notifications=true; - show-diffs=true + show-diffs=true; }; }; diff --git a/modules/docling.nix b/modules/docling.nix index e2c935e..6996450 100644 --- a/modules/docling.nix +++ b/modules/docling.nix @@ -5,16 +5,12 @@ ... }: { - - nixpkgs.config.allowBroken = true; - services.docling-serve = { - enable = true; + enable = false; #this is broken for now. + package = pkgs.python312Packages.docling-serve; port = 5001; host = "127.0.0.1"; openFirewall = true; - #environment - #environmentFile }; }