From a18c2f4090e0a746dacae132457729a6fde36ecd Mon Sep 17 00:00:00 2001 From: chase Date: Sun, 19 Oct 2025 18:12:00 -0400 Subject: [PATCH] Enable ssh agent forwarding --- nixos/base.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/base.nix b/nixos/base.nix index e752124..f818278 100644 --- a/nixos/base.nix +++ b/nixos/base.nix @@ -140,6 +140,7 @@ programs.ssh = { enableAskPassword = false; + forwardX11 = true; }; sops = { @@ -222,6 +223,7 @@ PermitRootLogin = "no"; PasswordAuthentication = false; KbdInteractiveAuthentication = false; + X11Forwarding = true; }; };