stockholm/lass/2configs/ssh-cryptsetup.nix
2022-05-29 20:05:42 +02:00

16 lines
284 B
Nix

{ config, ... }:
{
boot.initrd = {
network = {
enable = true;
ssh = {
enable = true;
authorizedKeys = with config.krebs.users; [
config.krebs.users.lass.pubkey
config.krebs.users.lass-blue.pubkey
];
};
};
};
}