diff options
| author | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-09-10 13:06:08 +0000 |
|---|---|---|
| committer | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-09-10 13:06:08 +0000 |
| commit | 407a080f421f27cba9a7c56f4b50ac338ced6f14 (patch) | |
| tree | cd1b13d737a7a41f18bae1c8a1cdefac11bea605 /flake.nix | |
| parent | b90c46e2777ffec89c1fdbd8ded150fcc9ed4084 (diff) | |
| download | focaccia-407a080f421f27cba9a7c56f4b50ac338ced6f14.tar.gz focaccia-407a080f421f27cba9a7c56f4b50ac338ced6f14.zip | |
Add correct cross-compilation architecture for musl developer environment
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 2 |
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"; }; }; |