Files
dotfiles/systems/common/optional/ssh_decrypt.nix
2024-09-14 21:13:04 -04:00

13 lines
269 B
Nix

{ config, ... }:
{
boot.initrd.network = {
enable = true;
ssh = {
enable = true;
port = 2222;
hostKeys = [ "/etc/ssh/initrd_ssh_host_ed25519_key" ];
authorizedKeys = config.users.users.richie.openssh.authorizedKeys.keys;
};
};
}