nixos-config/system/all/sshd.nix
2019-10-24 02:24:33 +02:00

23 lines
342 B
Nix

{ config, pkgs, lib, ... }:
with lib;
{
# not needed anymore
# programs.ssh.hostKeyAlgorithms = [ "ssh-rsa" "ssh-ed25519" "ecdsa-sha2-nistp256" ];
services.custom.ssh = {
tools.enable = true;
sshd = {
enable = true;
rootKeyFiles = [
( toString <assets/ssh/card_rsa.pub> )
];
};
};
}