pin tide flake input to forgejo

Switch from a local path: input to the canonical forgejo URL so
remote nixos-rebuild on the server can resolve it. Lock file
pinned to the current TIDE master revision.
This commit is contained in:
Yisroel Baum 2026-05-08 16:07:26 +03:00
parent 9312eaef3e
commit ed0dfd568d
2 changed files with 10 additions and 9 deletions

15
flake.lock generated
View file

@ -87,14 +87,17 @@
"utils": "utils" "utils": "utils"
}, },
"locked": { "locked": {
"lastModified": 1778245136, "lastModified": 1778227178,
"narHash": "sha256-0tuhtVni1ycawyeVjjsBlLUxo8Tu2w37J9g+YxAr8Sg=", "narHash": "sha256-jKSwouo3oy/B81fwDfL1XlsxrfPmRkOk5BVP7QNxwLs=",
"path": "/home/yisroel/Projects/TIDE", "ref": "refs/heads/master",
"type": "path" "rev": "dfa5327a2b609f4ab111631f547ead0080c81537",
"revCount": 120,
"type": "git",
"url": "https://git.yisroelbaum.com/yisroelbaum/TIDE"
}, },
"original": { "original": {
"path": "/home/yisroel/Projects/TIDE", "type": "git",
"type": "path" "url": "https://git.yisroelbaum.com/yisroelbaum/TIDE"
} }
}, },
"utils": { "utils": {

View file

@ -13,9 +13,7 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
tide = { tide = {
# Local path while iterating; switch to url = "git+https://git.yisroelbaum.com/yisroelbaum/TIDE";
# git+https://git.yisroelbaum.com/yisroelbaum/TIDE once pushed.
url = "path:/home/yisroel/Projects/TIDE";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
}; };