aboutsummaryrefslogtreecommitdiff
path: root/nix
diff options
context:
space:
mode:
authorBaptiste Jonglez <git@bitsofnetworks.org>2024-06-02 21:35:08 +0200
committerBaptiste Jonglez <git@bitsofnetworks.org>2024-06-02 21:35:08 +0200
commit8d475b2ee650b08b43530d2011c9c0b458bca595 (patch)
treefc634250a7d6d876902515e4eb21ecb7fa1e5bad /nix
parent7aa220a2e146b69cbc149c21356c38b3821f9271 (diff)
downloadnixcfg-8d475b2ee650b08b43530d2011c9c0b458bca595.tar.gz
nixcfg-8d475b2ee650b08b43530d2011c9c0b458bca595.zip
Fix nixos deprecation warning
Diffstat (limited to 'nix')
-rw-r--r--nix/configuration.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/configuration.nix b/nix/configuration.nix
index d88d6ef..4d25bc3 100644
--- a/nix/configuration.nix
+++ b/nix/configuration.nix
@@ -73,7 +73,7 @@ SystemMaxUse=1G
# Enable the OpenSSH daemon and disable password login.
services.openssh.enable = true;
- services.openssh.passwordAuthentication = false;
+ services.openssh.settings.PasswordAuthentication = false;
virtualisation.docker = {
enable = true;