16 lines
289 B
Nix
16 lines
289 B
Nix
{ 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
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|