Initial commit

This commit is contained in:
2024-03-07 23:14:44 +01:00
commit 0ed396cd88
13 changed files with 341 additions and 0 deletions

9
system/sshd.nix Normal file
View File

@@ -0,0 +1,9 @@
{ ... }: {
services.openssh = {
enable = true;
permitRootLogin = "no";
# TODO: Allow root login from certain hosts.
# Then dissallow rest.
passwordAuthentication = true;
};
}