This repository was archived by the owner on Sep 28, 2025. It is now read-only.
Fix broken devShell by adding flake-utils support for multiple systems#35
Draft
Fix broken devShell by adding flake-utils support for multiple systems#35
Conversation
Co-authored-by: yyovil <149292478+yyovil@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] broke devShell
Fix broken devShell by adding flake-utils support for multiple systems
Sep 7, 2025
yyovil
suggested changes
Sep 7, 2025
Owner
yyovil
left a comment
There was a problem hiding this comment.
We don't want vagrant on aarch64 and remove source tandem.env as it should be the .envrc file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The Nix flake was hardcoded to only support
x86_64-linuxsystems, making it incompatible with other architectures like macOS (both Intel and Apple Silicon) and ARM Linux systems.Before:
After:
This change enables the development environment to work across all platforms supported by Nix:
x86_64-linux(Intel/AMD Linux)x86_64-darwin(Intel macOS)aarch64-linux(ARM Linux)aarch64-darwin(Apple Silicon macOS)All existing development dependencies (
go,gopls,gotools,vagrant,sqlc,goreleaser) and shell configuration remain unchanged.Fixes #34.
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.