diff options
| -rw-r--r-- | config/networking.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/config/networking.nix b/config/networking.nix index decd84e..18f38c3 100644 --- a/config/networking.nix +++ b/config/networking.nix @@ -21,8 +21,10 @@ services.openssh = { enable = true; - permitRootLogin = "no"; - passwordAuthentication = false; + settings = { + permitRootLogin = "no"; + passwordAuthentication = false; + }; extraConfig = '' AcceptEnv PS1 ''; |
