about summary refs log tree commit diff
path: root/hosts
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2022-09-25 13:26:47 +0200
committerBaitinq <manuelpalenzuelamerino@gmail.com>2022-09-25 13:29:39 +0200
commitfe3c871781dcb71756630ad2e3d2a1351783bcc5 (patch)
treee0b35b42cd93d4a2d17c47801fdf3ac772dd30ab /hosts
parentHardware: / tfmps mount: Mount with 755 perms (diff)
downloadnixos-config-fe3c871781dcb71756630ad2e3d2a1351783bcc5.tar.gz
nixos-config-fe3c871781dcb71756630ad2e3d2a1351783bcc5.tar.bz2
nixos-config-fe3c871781dcb71756630ad2e3d2a1351783bcc5.zip
SSH: Disable password authentication
Diffstat (limited to 'hosts')
-rw-r--r--hosts/configuration.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix
index 130d213..593e83d 100644
--- a/hosts/configuration.nix
+++ b/hosts/configuration.nix
@@ -132,9 +132,8 @@
   services = {
     openssh = {
       enable = true;
-      /* DOESNT WORK BECAUSE OF AUTHORIZEDKEYS BUG
       passwordAuthentication = false;
-      kbdInteractiveAuthentication = false;*/
+      kbdInteractiveAuthentication = false;
       listenAddresses = [{
         addr = "0.0.0.0";
         port = 22;