first commit

This commit is contained in:
alyx 2025-07-15 21:03:35 +01:00
commit 37b1818720
No known key found for this signature in database
12 changed files with 1054 additions and 0 deletions

11
base/ssh.nix Normal file
View file

@ -0,0 +1,11 @@
{
networking.firewall.allowedTCPPorts = [22];
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
};
};
}