stockholm/lass/2configs/ssh-cryptsetup.nix

16 lines
289 B
Nix
Raw Normal View History

2019-04-17 16:12:47 +00:00
{ config, ... }:
{
boot.initrd = {
network = {
enable = true;
ssh = {
enable = true;
authorizedKeys = with config.krebs.users; [
config.krebs.users.lass-mors.pubkey
config.krebs.users.lass-blue.pubkey
];
};
};
};
}