From 348e6b9fb679fb8aca0c32400d39c31ebf73693f Mon Sep 17 00:00:00 2001 From: Rouven Seifert Date: Sun, 17 Sep 2023 22:49:28 +0200 Subject: [PATCH] allow users to use the server as remote builder --- hosts/quitte/configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/quitte/configuration.nix b/hosts/quitte/configuration.nix index 428e7fe..98b70a7 100644 --- a/hosts/quitte/configuration.nix +++ b/hosts/quitte/configuration.nix @@ -17,6 +17,12 @@ services.qemuGuest.enable = true; + # don't freeze the whole system while building something + nix.settings.cores = 16; + + # allows everyone in the nix-trusted group to perform builds + nix.settings.trusted-users = [ "@nix-trusted" ]; + # Set your time zone. time.timeZone = "Europe/Berlin";