13 lines
400 B
Nix
13 lines
400 B
Nix
{ ... }: {
|
|
services.openssh = {
|
|
enable = true;
|
|
forwardX11 = true;
|
|
permitRootLogin = "no";
|
|
startWhenNeeded = true;
|
|
};
|
|
nix.sshServe.enable = true;
|
|
nix.sshServe.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID29iFz1dBQmbCbVkclFEn4I9dY2uf3u7bbKs2obEIl/ mae@teapot"
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKGYGAlEHbg4fqLk+KgpqVtCCbUnUq1Z/IF0xPPJqJT8 justabanana@tesco"
|
|
];
|
|
}
|