1
0
forked from clan/clan-core
clan-core/clanModules/sshd.nix

25 lines
550 B
Nix
Raw Normal View History

2024-03-17 18:48:49 +00:00
{ config, pkgs, ... }:
{
2024-03-13 07:38:20 +00:00
services.openssh.enable = true;
2024-03-17 18:48:49 +00:00
services.openssh.hostKeys = [
{
path = config.clanCore.secrets.openssh.secrets."ssh.id_ed25519".path;
type = "ed25519";
}
];
2024-03-13 07:38:20 +00:00
clanCore.secrets.openssh = {
secrets."ssh.id_ed25519" = { };
facts."ssh.id_ed25519.pub" = { };
2024-03-17 18:48:49 +00:00
generator.path = [
pkgs.coreutils
pkgs.openssh
];
2024-03-13 07:38:20 +00:00
generator.script = ''
ssh-keygen -t ed25519 -N "" -f $secrets/ssh.id_ed25519
mv $secrets/ssh.id_ed25519.pub $facts/ssh.id_ed25519.pub
'';
};
}