Skip to content

Commit

Permalink
fix deprecated names
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Sep 12, 2022
1 parent 9dfcfa2 commit 47f6920
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions machines/sequoia/default.nix
Expand Up @@ -9,8 +9,8 @@
programs.zsh.enable = true;

# nix.package = pkgs.nixUnstable;
nix.allowedUsers = [ "brianhicks" "root" ];
nix.trustedUsers = [ "brianhicks" "root" ];
nix.settings.allowed-users = [ "brianhicks" "root" ];
nix.settings.trusted-users = [ "brianhicks" "root" ];

# Used for backwards compatibility, please read the changelog before changing.
# $ darwin-rebuild changelog
Expand All @@ -19,9 +19,9 @@
# You should generally set this to the total number of logical cores in your system.
# $ sysctl -n hw.ncpu
services.nix-daemon.enable = true;
nix.maxJobs = 20;
nix.buildCores = 20;
users.nix.configureBuildUsers = true;
nix.settings.max-jobs = 20;
nix.settings.cores = 20;
nix.configureBuildUsers = true;

# use nixbuild.net for distributed builds
nix.distributedBuilds = true;
Expand Down

0 comments on commit 47f6920

Please sign in to comment.