From d989008ad738d8bd2ed7bfc4018d4c674ecfc94d Mon Sep 17 00:00:00 2001 From: fruchti Date: Fri, 23 Jun 2023 19:55:52 +0200 Subject: [PATCH] Rupert: Fix warnings for 23.05 --- hosts/Rupert.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hosts/Rupert.nix b/hosts/Rupert.nix index ff42c3e..9a42cc5 100644 --- a/hosts/Rupert.nix +++ b/hosts/Rupert.nix @@ -73,8 +73,10 @@ in # Enable the OpenSSH daemon. services.openssh = { enable = true; - forwardX11 = true; - passwordAuthentication = false; + settings = { + # ForwardX11 = true; + PasswordAuthentication = false; + }; }; services.avahi.enable = true;