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

16 lines
284 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; [
2022-05-29 18:05:42 +00:00
config.krebs.users.lass.pubkey
2019-04-17 16:12:47 +00:00
config.krebs.users.lass-blue.pubkey
];
};
};
};
}