diff --git a/flake.lock b/flake.lock index bfa7cdb..253a293 100644 --- a/flake.lock +++ b/flake.lock @@ -26,16 +26,15 @@ "nixpkgs": "nixpkgs_2" }, "locked": { - "lastModified": 1777287027, + "lastModified": 1777305531, "narHash": "sha256-8GM2Aydq9i8KbvyObqyMYhWkY+e7oh3+eyMfUVnt6Oo=", - "ref": "feature/agent-git-identity", - "rev": "3487050bbd9126251a2fce98363858e1ee55ea23", - "revCount": 80, + "ref": "refs/heads/master", + "rev": "3829556188ee7a5bcdb23afa5ca5d50d6b621085", + "revCount": 81, "type": "git", "url": "https://code.m3ta.dev/m3tam3re/AGENTS" }, "original": { - "ref": "feature/agent-git-identity", "type": "git", "url": "https://code.m3ta.dev/m3tam3re/AGENTS" } @@ -453,16 +452,15 @@ "openspec": "openspec" }, "locked": { - "lastModified": 1777288631, + "lastModified": 1777305386, "narHash": "sha256-crbjn8KvewFwvBKovX1r4jdmGF96XePe7U9eT9LHVFY=", - "ref": "feature/agent-git-identity", - "rev": "fa339ae8ccdf1d3ae35b7571a9639f45952c725e", - "revCount": 251, + "ref": "refs/heads/master", + "rev": "95aeff28adbe251305b81584783b3e4f835670f1", + "revCount": 252, "type": "git", "url": "https://code.m3ta.dev/m3tam3re/nixpkgs" }, "original": { - "ref": "feature/agent-git-identity", "type": "git", "url": "https://code.m3ta.dev/m3tam3re/nixpkgs" } diff --git a/home/coding/languages/python.nix b/home/coding/languages/python.nix index 50758cf..f422200 100644 --- a/home/coding/languages/python.nix +++ b/home/coding/languages/python.nix @@ -23,7 +23,8 @@ in { (pkgs.python3.withPackages (ps: with ps; [ - pip + (writeShellScriptBin "pip" "exec uv pip $@") + (writeShellScriptBin "pip3" "exec uv pip $@") uv ] ++ cfg.extraPackages))