about summary refs log tree commit diff
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
commit243997aef462c0955bc0654422eb2bc0543589c4 (patch)
tree4f9dbe6c50b433df9022f012f87f41bb882d9f8b
parentHardware: / tfmps mount: Mount with 755 perms (diff)
downloadnixos-config-243997aef462c0955bc0654422eb2bc0543589c4.tar.gz
nixos-config-243997aef462c0955bc0654422eb2bc0543589c4.tar.bz2
nixos-config-243997aef462c0955bc0654422eb2bc0543589c4.zip
SSH: Disable password authentication
-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;