Commit f4a0f656d0de

Vincent Demeester <vincent@sbr.pm>
2026-01-26 16:20:34
fix(flake): add explicit main branch ref to voxtype input
- Resolve 404 error when fetching voxtype flake input - Explicit branch ref ensures consistent resolution Co-Authored-By: Claude <noreply@anthropic.com> Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent a5c36a4
Changed files (2)
flake.lock
@@ -1073,6 +1073,7 @@
       },
       "original": {
         "owner": "peteonrails",
+        "ref": "main",
         "repo": "voxtype",
         "type": "github"
       }
flake.nix
@@ -405,7 +405,7 @@
     copilot-cli.url = "github:scarisey/copilot-cli-flake";
     copilot-cli.inputs.nixpkgs.follows = "nixpkgs";
 
-    voxtype.url = "github:peteonrails/voxtype";
+    voxtype.url = "github:peteonrails/voxtype/main";
     voxtype.inputs.nixpkgs.follows = "nixpkgs";
   };
 }