blob: c80bb6823f9c35b286e5794a5e14592f7f8cd4be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ lib, ... }:
{
services = {
openssh = {
enable = true;
openFirewall = lib.mkDefault false;
allowSFTP = false;
settings = {
AllowUsers = [ "jras" ];
PermitRootLogin = "no";
};
};
};
}
|