dotfiles/modules/services/openssh/default.nix

44 lines
917 B
Nix
Raw Normal View History

2023-03-20 01:37:46 +00:00
{
options,
config,
lib,
pkgs,
format,
...
}:
with lib; let
cfg = config.aa.services.openssh;
user = config.users.users.${config.aa.user.name};
user-id = builtins.toString user.uid;
default-key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEmPdQcM0KCQ3YunF1gwN+B+i1Q8KrIfiUvNtgFQjTy2";
in {
options.aa.services.openssh = with types; {
enable = mkEnableOption "ssh";
authorizedKeys = mkOption {
type = listOf str;
default = [default-key];
description = "The public keys to authorize";
};
};
2023-03-20 01:37:46 +00:00
config = mkIf cfg.enable {
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
PermitRootLogin = mkDefault (
if format == "install-iso"
then "yes"
else "no"
);
2023-03-20 01:37:46 +00:00
};
};
2023-03-20 01:37:46 +00:00
aa.user.extraOptions = {
openssh.authorizedKeys.keys = cfg.authorizedKeys;
2023-03-20 01:37:46 +00:00
};
};
}