From 8ac911cd047d60d50320d01bf05797c31bb46b41 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Mon, 5 Jun 2023 21:30:13 -0400 Subject: [PATCH] Fix value --- README.org | 2 +- modules/ssh.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index 2a2ecb1..2a286a1 100644 --- a/README.org +++ b/README.org @@ -755,7 +755,7 @@ Apply some configuration to the default settings: enable = true; settings = { PermitRootLogin = "no"; - PasswordAuthentication = "no"; + PasswordAuthentication = false; }; }; } diff --git a/modules/ssh.nix b/modules/ssh.nix index 21c2a2d..c7dfdae 100644 --- a/modules/ssh.nix +++ b/modules/ssh.nix @@ -6,7 +6,7 @@ enable = true; settings = { PermitRootLogin = "no"; - PasswordAuthentication = "no"; + PasswordAuthentication = false; }; }; }