config/modules/base/sshd/default.nix

22 lines
445 B
Nix
Raw Normal View History

2023-04-14 14:12:45 +03:00
{
config,
lib,
myData,
...
}: {
config = {
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
PermitRootLogin = "no";
};
};
programs.mosh.enable = true;
2023-07-24 12:31:06 +03:00
programs.ssh.knownHosts = let
sshAttrs = lib.genAttrs ["extraHostNames" "publicKey"] (name: null);
in
lib.mapAttrs (name: cfg: builtins.intersectAttrs sshAttrs cfg) myData.hosts;
2023-04-14 14:12:45 +03:00
};
}