fixed mistake

This commit is contained in:
2024-09-15 11:57:36 -04:00
parent b7400f44e5
commit a5f09c1df7

View File

@@ -1,13 +1,15 @@
{ config, ... }:
{
boot.initrd.network = {
enable = true;
ssh = {
boot.initrd = {
network = {
enable = true;
port = 2222;
hostKeys = [ "/etc/ssh/initrd_ssh_host_ed25519_key" ];
authorizedKeys = config.users.users.richie.openssh.authorizedKeys.keys;
ssh = {
enable = true;
port = 2222;
hostKeys = [ "/etc/ssh/initrd_ssh_host_ed25519_key" ];
authorizedKeys = config.users.users.richie.openssh.authorizedKeys.keys;
};
};
availableKernelModules = [ "igb" ];
};
availableKernelModules = [ "igb" ];
}