{ config, lib, ... }: { options.snowflake.core.sshd = { enable = lib.mkEnableOption "Enable core sshd configuration"; }; config = lib.mkIf config.snowflake.core.sshd.enable { services.openssh = { enable = true; settings = { # Disable password auth and root login. PasswordAuthentication = false; PermitRootLogin = "no"; }; openFirewall = true; }; # Enable mosh for access over spotty networks. programs.mosh.enable = true; programs.ssh.startAgent = true; }; }