summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Kummerlaender2021-05-11 21:20:28 +0200
committerAdrian Kummerlaender2021-05-11 21:20:28 +0200
commit2ce8acf7cd5750c0eec1a2e25c9fb45b7b8a90b1 (patch)
treeebebcc474ef69fb4c67d09836b57fc7b9a64dc06
parent7de9f38d87c16b76ef5d7c0cd7329d49b79b6c09 (diff)
downloadnixos_system-2ce8acf7cd5750c0eec1a2e25c9fb45b7b8a90b1.tar
nixos_system-2ce8acf7cd5750c0eec1a2e25c9fb45b7b8a90b1.tar.gz
nixos_system-2ce8acf7cd5750c0eec1a2e25c9fb45b7b8a90b1.tar.bz2
nixos_system-2ce8acf7cd5750c0eec1a2e25c9fb45b7b8a90b1.tar.lz
nixos_system-2ce8acf7cd5750c0eec1a2e25c9fb45b7b8a90b1.tar.xz
nixos_system-2ce8acf7cd5750c0eec1a2e25c9fb45b7b8a90b1.tar.zst
nixos_system-2ce8acf7cd5750c0eec1a2e25c9fb45b7b8a90b1.zip
Set common as trusted on majestix
-rw-r--r--host/majestix.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/host/majestix.nix b/host/majestix.nix
index 3d33aca..23cac16 100644
--- a/host/majestix.nix
+++ b/host/majestix.nix
@@ -54,7 +54,10 @@
};
};
- nix.maxJobs = 32;
+ nix = {
+ maxJobs = 32;
+ trustedUsers = [ "root" "common" ];
+ };
system.stateVersion = "20.09";
}