diff options
author | Azat Bahawi <azat@bahawi.net> | 2023-03-21 01:21:24 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2023-03-21 01:21:24 +0300 |
commit | 6f8d6d19b3fdf39d4f9aa418aab7a981071106f7 (patch) | |
tree | 1137ca463f067ef84cd184224db01336bd61f030 /nixosConfigurations/eonwe | |
parent | 2023-03-20 (diff) |
2023-03-21
Diffstat (limited to '')
-rw-r--r-- | nixosConfigurations/eonwe/default.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/nixosConfigurations/eonwe/default.nix b/nixosConfigurations/eonwe/default.nix index e5080c3..b5a5fc4 100644 --- a/nixosConfigurations/eonwe/default.nix +++ b/nixosConfigurations/eonwe/default.nix @@ -62,11 +62,11 @@ with lib; { # Usually stuff that is going to be compiled on this machine is going to have # parallelisation support enabled, so we will make sure that all cores are # utilised and limit the job queue to one. - nix.extraOptions = '' - keep-going = true - max-jobs = 1 - cores = 32 - ''; + nix.settings = { + keep-going = true; + max-jobs = 1; + cores = 32; + }; boot = { # TODO Override Xanmod kernel to support ZFS. This probably will require |