13 lines
199 B
Nix
Executable File
13 lines
199 B
Nix
Executable File
{ pkgs, ... }: {
|
|
|
|
#environment.systemPackages = with pkgs; [
|
|
#];
|
|
|
|
services.fail2ban.enable = true;
|
|
services.openssh = {
|
|
enable = true;
|
|
settings.PasswordAuthentication = true;
|
|
};
|
|
|
|
}
|