system: add @wheel to trusted users

This commit is contained in:
NullBite 2024-12-19 01:22:04 -05:00
parent 21b7649094
commit b481d6cb9f
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A

View File

@ -70,6 +70,14 @@ in
# fallback to building locally if binary cache fails (home-manager should be
# able to handle simple rebuilds offline)
nix.settings.fallback = lib.mkDefault true;
# trust all members of wheel. this technically can give you root power,
# but if you've compromised a member of wheel, you might as well already
# be root; you could easily intercept a sudo call.
nix.settings.trusted-users = [
"@wheel"
"root"
];
})
];
}