config/modules/base/sshd/default.nix

27 lines
474 B
Nix
Raw Normal View History

2023-04-14 14:12:45 +03:00
{
config,
lib,
myData,
...
2024-07-29 15:39:54 +03:00
}:
{
2023-04-14 14:12:45 +03:00
config = {
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
PermitRootLogin = "no";
};
};
programs.mosh.enable = true;
2024-07-29 15:39:54 +03:00
programs.ssh.knownHosts =
let
sshAttrs = lib.genAttrs [
"extraHostNames"
"publicKey"
] (_: null);
in
2023-10-01 23:14:05 +03:00
lib.mapAttrs (_name: builtins.intersectAttrs sshAttrs) myData.hosts;
2023-04-14 14:12:45 +03:00
};
}