aboutsummaryrefslogtreecommitdiff
path: root/modules/nixos/ssh.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-09-12 13:11:20 -0700
committerFranck Cuny <franck@fcuny.net>2025-09-12 13:55:09 -0700
commit2fea36c19eb904125e2db5ba230b28d72dc881db (patch)
tree4233e16f0d50aec1cd5e4d3e5f5ed1b8728e380c /modules/nixos/ssh.nix
parentmove common modules together and simplify imports (diff)
downloadinfra-2fea36c19eb904125e2db5ba230b28d72dc881db.tar.gz
start to refactor nixos modules
Diffstat (limited to 'modules/nixos/ssh.nix')
-rw-r--r--modules/nixos/ssh.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/modules/nixos/ssh.nix b/modules/nixos/ssh.nix
new file mode 100644
index 0000000..b4c8772
--- /dev/null
+++ b/modules/nixos/ssh.nix
@@ -0,0 +1,21 @@
+{ 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";
+ }
+ ];
+ };
+}