From 7c081c489056f427d32240e03ae0d1cdf2cf8489 Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Fri, 1 Dec 2023 17:41:27 -0600 Subject: [PATCH] compiling my entire systems seems still undoable --- workstation/configuration.org | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/workstation/configuration.org b/workstation/configuration.org index e74623e..0dd46ff 100644 --- a/workstation/configuration.org +++ b/workstation/configuration.org @@ -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