summaryrefslogtreecommitdiff
path: root/modules/ssh.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/ssh.nix')
-rw-r--r--modules/ssh.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ssh.nix b/modules/ssh.nix
index 061f5fe..d487e31 100644
--- a/modules/ssh.nix
+++ b/modules/ssh.nix
@@ -4,8 +4,8 @@
services.openssh = {
enable = true;
settings = {
- permitRootLogin = "no";
- passwordAuthentication = false;
+ PermitRootLogin = "no";
+ PasswordAuthentication = false;
};
};
}