nixos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

default.nix (177B)


      1 {...}: {
      2 	services.openssh = {
      3 		enable = true;
      4 		settings = {
      5 			KbdInteractiveAuthentication = false;
      6 			PasswordAuthentication = false;
      7 			PermitRootLogin = "no";
      8 		};
      9 	};
     10 }