Skip to content

Commit b9e1f3e

Browse files
committed
fix(nix): add sudo in addition to wheel
1 parent c80fc92 commit b9e1f3e

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

modules/nix.nix

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@
33
nix = {
44
enable = true;
55
settings = {
6-
allowed-users = [ "@wheel" ];
7-
trusted-users = [ "@wheel" ];
6+
allowed-users = [
7+
"@wheel"
8+
"@sudo"
9+
];
10+
trusted-users = [
11+
"@wheel"
12+
"@sudo"
13+
];
814

915
always-allow-substitutes = true;
1016
auto-optimise-store = true;

0 commit comments

Comments
 (0)