aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common/optional/services/openssh.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/common/optional/services/openssh.nix')
-rw-r--r--hosts/common/optional/services/openssh.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/hosts/common/optional/services/openssh.nix b/hosts/common/optional/services/openssh.nix
new file mode 100644
index 0000000..33cdbac
--- /dev/null
+++ b/hosts/common/optional/services/openssh.nix
@@ -0,0 +1,11 @@
+{
+ services.openssh = {
+ enable = true;
+ openFirewall = true;
+ settings = {
+ KbdInteractiveAuthentication = false;
+ PasswordAuthentication = false;
+ PermitRootLogin = "yes";
+ };
+ };
+}