You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
518 B
Nix
37 lines
518 B
Nix
3 months ago
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: let
|
||
|
cfg = config.services.openssh;
|
||
|
in {
|
||
|
|
||
|
|
||
|
options = {
|
||
|
|
||
|
services.openssh.authorizedKeysOnly = lib.mkEnableOption ''
|
||
|
only logins using ssh keys (improving over default settings)
|
||
|
'';
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
|
||
|
services.openssh = {
|
||
|
settings = {
|
||
|
KbdInteractiveAuthentication = lib.mkIf cfg.authorizedKeysOnly false;
|
||
|
PasswordAuthentication = lib.mkIf cfg.authorizedKeysOnly false;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
# TODO add tests
|
||
|
|
||
|
|
||
|
}
|
||
|
|