Initial commit

This commit is contained in:
2024-12-29 15:42:43 -05:00
commit 80acbe079c
20 changed files with 300 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
{
imports = [
./openssh.nix
];
}

View File

@@ -0,0 +1,12 @@
{
services.openssh = {
enable = true;
openFirewall = true;
settings = {
PermitRootLogin = "prohibit-password";
KbdInteractiveAuthentication = false;
PasswordAuthentication = false;
};
};
}