f15434475f
Fixes an issue with 222160fc3a
which
caused the generated ed25519 host key to be preferred over the one
defined in krebs/3modules/*/default.nix
11 lines
169 B
Nix
11 lines
169 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with import <stockholm/lib>;
|
|
|
|
{
|
|
services.openssh = {
|
|
enable = true;
|
|
};
|
|
tv.iptables.input-internet-accept-tcp = singleton "ssh";
|
|
}
|