diff options
| -rw-r--r-- | hosts/atlas/default.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hosts/atlas/default.nix b/hosts/atlas/default.nix index af0243a..f228411 100644 --- a/hosts/atlas/default.nix +++ b/hosts/atlas/default.nix @@ -1,5 +1,6 @@ { config, + lib, pkgs, ... }: { @@ -39,7 +40,10 @@ hostName = "atlas"; }; - nix.settings.trusted-users = ["bob"]; + nix.settings = { + extra-platforms = lib.mkForce ""; + trusted-users = ["bob"]; + }; system.stateVersion = "22.11"; |
