This commit is contained in:
Spectre 2024-06-07 14:19:39 +02:00
parent 2c57b566f9
commit d73d2be924
5 changed files with 14 additions and 2 deletions

9
system/ssh.nix Normal file
View file

@ -0,0 +1,9 @@
{...}: {
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "no";
PasswordAuthentication = false;
};
};
}