stockholm/tv/2configs/sshd.nix
tv f15434475f tv sshd: drop default generated host key
Fixes an issue with 222160fc3a which
caused the generated ed25519 host key to be preferred over the one
defined in krebs/3modules/*/default.nix
2019-07-30 19:20:32 +02:00

11 lines
169 B
Nix

{ config, lib, pkgs, ... }:
with import <stockholm/lib>;
{
services.openssh = {
enable = true;
};
tv.iptables.input-internet-accept-tcp = singleton "ssh";
}