compiling my entire systems seems still undoable

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

View File

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