compiling my entire systems seems still undoable

This commit is contained in:
2023-12-01 17:41:27 -06:00
parent a8ab50fd11
commit 7c081c4890

View File

@@ -186,7 +186,7 @@ nix = let featuresList = [
# } ]; # } ];
distributedBuilds = true; distributedBuilds = true;
settings = { settings = {
cores = 12; cores = 16;
auto-optimise-store = true; auto-optimise-store = true;
trusted-users = [ "nixremote" ]; trusted-users = [ "nixremote" ];
system-features = featuresList; system-features = featuresList;
@@ -329,17 +329,17 @@ architecture and other build flags.
#+begin_src nix #+begin_src nix
nixpkgs = { nixpkgs = {
# hostPlatform = lib.mkDefault "x86_64-linux"; hostPlatform = lib.mkDefault "x86_64-linux";
config = { config = {
allowUnfree = true; allowUnfree = true;
permittedInsecurePackages = [ permittedInsecurePackages = [
]; ];
}; };
localSystem = { # localSystem = {
gcc.arch = cpuArchitecture; # gcc.arch = cpuArchitecture;
gcc.tune = cpuArchitecture; # gcc.tune = cpuArchitecture;
system = "x86_64-linux"; # system = "x86_64-linux";
}; # };
}; };
#+end_src #+end_src