diff options
| author | Quentin Aristote <quentin@aristote.fr> | 2023-02-15 22:56:39 +0100 |
|---|---|---|
| committer | Quentin Aristote <quentin@aristote.fr> | 2023-02-15 22:56:39 +0100 |
| commit | 547870aaafcafe4836557f2fc98768053af26ef2 (patch) | |
| tree | 1f395756cd74d8fc8a775bf83d4b9a066dd2d8f0 | |
| parent | b0a27947aec3477bcfa9bbba1888a40f66686b3e (diff) | |
ssh: fix options
| -rw-r--r-- | config/networking.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/networking.nix b/config/networking.nix index 18f38c3..4716149 100644 --- a/config/networking.nix +++ b/config/networking.nix @@ -22,8 +22,8 @@ services.openssh = { enable = true; settings = { - permitRootLogin = "no"; - passwordAuthentication = false; + PermitRootLogin = "no"; + PasswordAuthentication = false; }; extraConfig = '' AcceptEnv PS1 |
