diff options
author | ene <ene@sils.li> | 2023-01-21 07:41:32 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-01-21 07:41:32 +0100 |
commit | cf63e4141cf072b7b942bff23e023890e767a3b1 (patch) | |
tree | 7eeafef988fd8c3f541369526b6711e082085a48 /services/opensshd.nix | |
parent | Merge branch 'server1' into server1_users (diff) | |
download | nixos-server-cf63e4141cf072b7b942bff23e023890e767a3b1.tar.gz nixos-server-cf63e4141cf072b7b942bff23e023890e767a3b1.zip |
Fix: Resolve merge conflicts
Diffstat (limited to '')
-rw-r--r-- | services/opensshd.nix | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/services/opensshd.nix b/services/opensshd.nix index 4bd38fd..cb9f2ba 100644 --- a/services/opensshd.nix +++ b/services/opensshd.nix @@ -1,19 +1,18 @@ -{ config, pkg, ... }: { +{ + config, + pkg, + ... +}: { services.openssh = { enable = true; passwordAuthentication = false; - extraConfig = '' - PrintMotd yes - ''; # this could be done with pam - hostKeys = [{ - comment = "key comment"; - path = "/srv/sshd/ssh_host_ed25519_key"; - rounds = 1000; - type = "ed25519"; - }]; + hostKeys = [ + { + comment = "key comment"; + path = "/srv/sshd/ssh_host_ed25519_key"; + rounds = 1000; + type = "ed25519"; + } + ]; }; - users.users.root.openssh.authorizedKeys.keys = [ - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGBFuTNNn71Rhfnop2cdz3r/RhWWlCePnSBOhTBbu2ME soispha" - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIG63gxw8JePmrC8Fni0pLV4TnPBhCPmSV9FYEdva+6s7 sils" - ]; } |