summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2023-05-29 01:55:12 -0400
committerseth <[email protected]>2023-05-29 01:55:12 -0400
commite56dab3c1fe415d9184f265cb447744c905a9ae9 (patch)
tree6a7b2aa4f8a02b4918555e1009b7dad3c01129d4
parent623993182c9e78914fb1fb92a4b0a1b00cf3862d (diff)
atlas: don't advertise amd64 support
-rw-r--r--hosts/atlas/default.nix6
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";