summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-10-10 10:17:51 -0400
committerRaghuram Subramani <raghus2247@gmail.com>2025-10-10 10:17:51 -0400
commit985a4cc0576910625e5d34d70f35338fc52e2f88 (patch)
treedb39f97dc782c82d98760286a0303efdce4f4dd2
parent552e495b17725956605a6d63f5f12f33ce03d568 (diff)
fix ssh settings
-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;
};
};
}