Attempt build using LLVM

This commit is contained in:
Mikael Voss 2024-10-11 20:29:27 +02:00
parent 64decb01d1
commit 98542ed6ff
No known key found for this signature in database
2 changed files with 10 additions and 1 deletions

View file

@ -98,7 +98,10 @@
localSystem = builtins.currentSystem or platform;
crossSystem = platform;
overlays = [ self.overlays.default ];
config.allowUnsupportedSystem = true;
config = {
allowBroken = true;
allowUnsupportedSystem = true;
};
});
packages = eachSystem (system: platform:

View file

@ -291,6 +291,12 @@ imports = [
});
};
nixpkgs.crossSystem = {
system = "x86_64-linux";
useLLVM = true;
linker = "lld";
};
programs.ssh = {
knownHosts = {
"[build-worker-kyoumanet.fly.dev]:2201".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDL2M97UBHg9aUfjDUxzmzg1r0ga0m3/stummBVwuEAB";