about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorTheofilos Augoustis <theofilos.augoustis@gmail.com>2025-09-10 13:06:08 +0000
committerTheofilos Augoustis <theofilos.augoustis@gmail.com>2025-09-10 13:06:08 +0000
commit407a080f421f27cba9a7c56f4b50ac338ced6f14 (patch)
treecd1b13d737a7a41f18bae1c8a1cdefac11bea605
parentb90c46e2777ffec89c1fdbd8ded150fcc9ed4084 (diff)
downloadfocaccia-407a080f421f27cba9a7c56f4b50ac338ced6f14.tar.gz
focaccia-407a080f421f27cba9a7c56f4b50ac338ced6f14.zip
Add correct cross-compilation architecture for musl developer environment
-rw-r--r--flake.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 4141100..6dba1ca 100644
--- a/flake.nix
+++ b/flake.nix
@@ -50,7 +50,7 @@
 		musl-pkgs = import nixpkgs {
 			inherit system;
 			crossSystem = {
-				config = "x86_64-unknown-linux-musl";
+				config = "${system}-musl";
 			};
 		};