This commit is contained in:
Florian RICHER 2024-02-17 11:57:39 +01:00
parent b8f904b543
commit 8cd6b0580c

View file

@ -3,12 +3,15 @@
{ {
services.openssh = { services.openssh = {
enable = true; enable = true;
passwordAuthentication = true;
listenAddresses = [ listenAddresses = [
{ {
addr = "192.168.1.0/24"; addr = "192.168.1.0/24";
port = "22"; port = "22";
} }
]; ];
settings {
PasswordAuthentication = true;
};
}; };
} }