diff options
author | Minijackson <minijackson@riseup.net> | 2023-06-02 18:18:43 +0200 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2023-06-02 18:25:26 +0200 |
commit | e838ad44364d69c8031a30fee7a1d8e62c78dd73 (patch) | |
tree | 0bcf67a1098609abe3c8b4ae26dc80c3a0fce8b9 /common/ssh.nix | |
parent | 3a2b3a2e8f5da9ba38dd90008d3d8fdcd7b661b4 (diff) | |
download | nixos-config-reborn-e838ad44364d69c8031a30fee7a1d8e62c78dd73.tar.gz nixos-config-reborn-e838ad44364d69c8031a30fee7a1d8e62c78dd73.zip |
common/ssh: use RFC42-style options
Diffstat (limited to 'common/ssh.nix')
-rw-r--r-- | common/ssh.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/ssh.nix b/common/ssh.nix index f0a0676..84f5577 100644 --- a/common/ssh.nix +++ b/common/ssh.nix | |||
@@ -5,6 +5,6 @@ inputs: | |||
5 | { | 5 | { |
6 | services.openssh = { | 6 | services.openssh = { |
7 | enable = true; | 7 | enable = true; |
8 | passwordAuthentication = false; | 8 | settings.PasswordAuthentication = false; |
9 | }; | 9 | }; |
10 | } | 10 | } |