This commit is contained in:
2025-04-20 12:30:39 +03:00
parent fce3a4ff0c
commit fd163750c8
7 changed files with 887 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
let
gcc.arch = "x86-64-v3";
in {
nix.settings.system-features = ["gccarch-${gcc.arch}"];
nixpkgs.hostPlatform = {
system = "x86_64-linux";
inherit gcc;
};
}