From 939c768280c2dc542a35ce017d2d880725f3efd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tristan=20Dani=C3=ABl=20Maat?= Date: Wed, 28 Apr 2021 00:22:21 +0100 Subject: [PATCH] nix: Add the wheel group to trusted users to allow remote builds --- configuration/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configuration/default.nix b/configuration/default.nix index fbf55b8..f6ff072 100644 --- a/configuration/default.nix +++ b/configuration/default.nix @@ -10,10 +10,14 @@ ]; nix = { + # Enable flakes package = pkgs.nixFlakes; extraOptions = '' experimental-features = nix-command flakes ''; + + # Enable remote builds from tlater + trustedUsers = [ "@wheel" ]; }; networking = {