Files
Chickadee/modules/ssh.nix
T

29 lines
665 B
Nix
Raw Normal View History

2026-07-11 14:56:13 -04:00
{ config, lib, pkgs, ... }:
{
networking.firewall = {
enable = true;
interfaces.wg0.allowedTCPPorts = [ 22 ];
};
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "prohibit-password";
PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
};
listenAddresses = [{
2026-08-03 13:22:28 -04:00
addr = "0.0.0.0";
2026-07-11 14:56:13 -04:00
port = 22;
}];
};
2026-07-12 08:20:56 -04:00
2026-08-03 13:22:28 -04:00
users.users.lilac.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKhCH6YN63AWFsR1wZ6wJdZ2jlTtYBSkY5FnLrWoLKeg"
];
2026-07-11 14:56:13 -04:00
users.users.root.openssh.authorizedKeys.keys = [
2026-08-03 13:22:28 -04:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKhCH6YN63AWFsR1wZ6wJdZ2jlTtYBSkY5FnLrWoLKeg"
2026-07-11 14:56:13 -04:00
];
}