first commit
This commit is contained in:
commit
21737592da
27 changed files with 744 additions and 0 deletions
12
servers/common/ssh.nix
Normal file
12
servers/common/ssh.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
ports = [ 1004 ];
|
||||
settings = {
|
||||
AllowGroups = [ "remote" ];
|
||||
PasswordAuthentication = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue