Add optional ssh server to initrd

pull/30/head
Simon Bruder 2021-01-07 13:39:25 +01:00
parent f1620679d4
commit a44f1fd1ac
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
2 changed files with 20 additions and 0 deletions

View File

@ -16,6 +16,7 @@
./gpu
./grub.nix
./gui.nix
./initrd-ssh.nix
./libvirt.nix
./locales.nix
./media-proxy.nix

19
modules/initrd-ssh.nix Normal file
View File

@ -0,0 +1,19 @@
# For network to work in initrd, either pass the `ip=` kernel parameter or
# enable networking.useDHCP. You also have to add the required kernel modules
# for the network card to boot.initrd.availableKernelModules. Also see the
# instructions on how to add a host key to password-store.
{ config, lib, ... }:
{
boot.initrd.network = {
#enable = true;
ssh = {
enable = lib.mkDefault config.boot.initrd.network.enable;
port = 2222;
# ssh-keygen -t ed25519 -N "" -f initrd-ssh-host-key -C HOSTNAME
# pass insert -m nixos/machines/HOSTNAME/initrd-ssh-host-key < initrd-ssh-host-key
hostKeys = [
(toString <secrets/initrd-ssh-host-key>)
];
};
};
}