nix: Add the wheel group to trusted users to allow remote builds #34

Manually merged
tlater merged 1 commit from tlater/remote-builds into master 2021-04-28 00:25:49 +01:00
Showing only changes of commit 939c768280 - Show all commits

View file

@ -10,10 +10,14 @@
]; ];
nix = { nix = {
# Enable flakes
package = pkgs.nixFlakes; package = pkgs.nixFlakes;
extraOptions = '' extraOptions = ''
experimental-features = nix-command flakes experimental-features = nix-command flakes
''; '';
# Enable remote builds from tlater
trustedUsers = [ "@wheel" ];
}; };
networking = { networking = {