This commit is contained in:
Florian RICHER 2024-02-17 11:56:20 +01:00
parent 1442b17190
commit b8f904b543

View file

@ -1,5 +1,6 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{
services.openssh = { services.openssh = {
enable = true; enable = true;
passwordAuthentication = true; passwordAuthentication = true;
@ -8,5 +9,6 @@ services.openssh = {
addr = "192.168.1.0/24"; addr = "192.168.1.0/24";
port = "22"; port = "22";
} }
] ];
}; };
}