diff options
author | Vincent Ambo <tazjin@tvl.su> | 2023-08-21T11·01+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2023-08-21T11·06+0000 |
commit | 7d69e82be3fc22f42c83d997b3141ca0d798c0dc (patch) | |
tree | ce63fb1992c6a5a1dd652019d6620393585e2d35 | |
parent | 387a743944d72978db2d1c4f449cbbce76b7835f (diff) |
feat(tvl-users): grant wheel privileges to flokli r/6516
Flokli needs deploy access to whitby to ~~break auth~~ experiment with Dex. Change-Id: If39763192961e227ee569a312f6a0e3ae2c10786 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9113 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
-rw-r--r-- | ops/modules/tvl-users.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/modules/tvl-users.nix b/ops/modules/tvl-users.nix index 004bc5cbfff0..53a08b9c5954 100644 --- a/ops/modules/tvl-users.nix +++ b/ops/modules/tvl-users.nix @@ -64,7 +64,7 @@ users.flokli = { isNormalUser = true; - extraGroups = [ "git" ]; + extraGroups = [ "git" "wheel" ]; openssh.authorizedKeys.keys = depot.users.flokli.keys.all; }; |