27 lines
616 B
Nix
27 lines
616 B
Nix
{ config, options, lib, pkgs, ... }:
|
|
let
|
|
inherit (lib.modules) mkIf;
|
|
in
|
|
{
|
|
options.modules.networking.ssh = let
|
|
inherit (lib.options) mkEnableOption;
|
|
in {
|
|
enable = mkEnableOption "enable ssh";
|
|
};
|
|
|
|
config = mkIf config.modules.networking.ssh.enable {
|
|
services.openssh = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
ports = [ 22 ];
|
|
settings = {
|
|
PassswordAuthentication = true;
|
|
AllowUsers = [ "chris", "root" ];
|
|
UseDns = true;
|
|
UsePAM = true;
|
|
PermitRootLogin = "prohibit-password";
|
|
PermitEmptyPasswords = "no";
|
|
};
|
|
};
|
|
};
|
|
}
|