initial commit
This commit is contained in:
commit
d58ad9d46d
23 changed files with 3527 additions and 0 deletions
11
base/ssh.nix
Normal file
11
base/ssh.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
networking.firewall.allowedTCPPorts = [ 22 ];
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
settings = {
|
||||
PasswordAuthentication = false;
|
||||
KbdInteractiveAuthentication = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue