From 5ee8ebd2dca53187756caf62b7efa8a2e8d4762f Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Fri, 10 Feb 2023 13:21:47 +1000 Subject: [PATCH] common/openssh: update renamed setting https://github.com/NixOS/nixpkgs/pull/211991/commits/267b25f380b3c3837b002c5cc024248f3870a2cb --- nixos/common/openssh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/common/openssh.nix b/nixos/common/openssh.nix index 1952694..fcf85d3 100644 --- a/nixos/common/openssh.nix +++ b/nixos/common/openssh.nix @@ -2,7 +2,7 @@ { config, lib, ... }: { services.openssh = { - forwardX11 = false; + settings.X11Forwarding = false; settings.KbdInteractiveAuthentication = false; settings.PasswordAuthentication = false; settings.UseDns = false;