tv initrd/sshd: init

This commit is contained in:
tv 2023-09-05 11:30:39 +02:00
parent 65829c6fb6
commit f9adf3af97
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
{ config, ... }: {
boot.initrd.availableKernelModules = [
"e1000e"
];
boot.initrd.network.enable = true;
boot.initrd.network.ssh = {
enable = true;
port = 11423;
authorizedKeys = [
config.krebs.users.tv.pubkey
];
ignoreEmptyHostKeys = true;
};
boot.initrd.secrets = {
"/etc/ssh/ssh_host_rsa_key" = <secrets/initrd/ssh_host_rsa_key>;
};
}