Add @wheel to nix trusted users to allow remote deployment.

This commit is contained in:
2023-06-30 10:54:04 +01:00
parent 0a89def365
commit c9634ceb86
2 changed files with 4 additions and 0 deletions

View File

@@ -4,6 +4,7 @@
./flakes.nix ./flakes.nix
./locale.nix ./locale.nix
./network.nix ./network.nix
./nix.nix
./packages.nix ./packages.nix
./sudo.nix ./sudo.nix
]; ];

View File

@@ -0,0 +1,3 @@
{
nix.settings.trusted-users = [ "root" "@wheel" ];
}