diff options
-rw-r--r-- | ops/nixos/camden/default.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ops/nixos/camden/default.nix b/ops/nixos/camden/default.nix index 4fe7b4376474..9d82eb9de46f 100644 --- a/ops/nixos/camden/default.nix +++ b/ops/nixos/camden/default.nix @@ -145,6 +145,9 @@ in lib.fix(self: { # Join Tailscale into home network services.tailscale.enable = true; + # Allow sudo-ing via the forwarded SSH agent. + security.pam.enableSSHAgentAuth = true; + # Run cgit for the depot. The onion here is nginx(thttpd(cgit)). systemd.services.cgit = { wantedBy = [ "multi-user.target" ]; |