10 lines
173 B
Nix
10 lines
173 B
Nix
let
|
|
gcc.arch = "x86-64-v3";
|
|
in {
|
|
nix.settings.system-features = ["gccarch-${gcc.arch}"];
|
|
nixpkgs.hostPlatform = {
|
|
system = "x86_64-linux";
|
|
inherit gcc;
|
|
};
|
|
}
|