From eadb0c45ce9ad3ea772fdafd419aa3dc2d69ab38 Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Wed, 26 Nov 2025 18:55:04 +0530 Subject: [PATCH] fix: update handoff dependency to github source The commit updates the handoff flake dependency from a local path to a GitHub repository. This changes the source URL from a local path "/home/servius/Projects/handoff" to "github:xatuke/handoff" and updates the corresponding lock file entries with new revision and hash information. The change affects: - flake.nix: Updated handoff url from path to github - flake.lock: Updated handoff locked and original fields to reflect github source This ensures the project uses the upstream handoff repository instead of a local development path. --- flake.lock | 15 +++++++++------ flake.nix | 3 +-- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/flake.lock b/flake.lock index 1f913627..285ac8d9 100644 --- a/flake.lock +++ b/flake.lock @@ -1736,14 +1736,17 @@ ] }, "locked": { - "lastModified": 1763394035, - "narHash": "sha256-dsLCe/BTQXaogqAsTStl/SSIdf95hOALD3sCiD8eFZ0=", - "path": "/home/servius/Projects/handoff", - "type": "path" + "lastModified": 1763671675, + "narHash": "sha256-MzYhN1iMSKJyVI7R0TTXXRNHzS2X6s66z5v5HvK8EMQ=", + "owner": "xatuke", + "repo": "handoff", + "rev": "4568bde6f19efe480bdc0e26058f49998bb58912", + "type": "github" }, "original": { - "path": "/home/servius/Projects/handoff", - "type": "path" + "owner": "xatuke", + "repo": "handoff", + "type": "github" } }, "haskell-flake": { diff --git a/flake.nix b/flake.nix index 2d82cb92..2ef3d8ef 100644 --- a/flake.nix +++ b/flake.nix @@ -231,8 +231,7 @@ inputs.nixpkgs.follows = "nixpkgs"; }; handoff = { - # url = "github:uttarayan21/handoff"; - url = "path:/home/servius/Projects/handoff"; + url = "github:xatuke/handoff"; inputs.nixpkgs.follows = "nixpkgs"; }; crates-nix.url = "github:uttarayan21/crates.nix";