aboutsummaryrefslogtreecommitdiff
path: root/modules/nixos/ssh.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--modules/nixos/ssh.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/modules/nixos/ssh.nix b/modules/nixos/ssh.nix
deleted file mode 100644
index b4c8772..0000000
--- a/modules/nixos/ssh.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ lib, ... }:
-{
- networking.firewall.allowedTCPPorts = [ 22 ];
-
- services.openssh = {
- enable = lib.mkDefault true;
- settings = {
- PasswordAuthentication = lib.mkForce false;
- KbdInteractiveAuthentication = lib.mkForce false;
-
- PermitRootLogin = lib.mkForce "prohibit-password";
- };
- openFirewall = lib.mkDefault true;
- hostKeys = [
- {
- path = "/etc/ssh/ssh_host_ed25519_key";
- type = "ed25519";
- }
- ];
- };
-}