blob: 4755b116f98426b35a80ca0b30f538e26b1f7c71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ config, ... }:
{
nix.sshServe.enable = true;
nix.sshServe.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBF9SBNKE3Pw/ALwTfzpzs+j6Rpaf0kUy6FiPMmgNNNt root@mors"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFCZSq5oLrokkh3F+MOdK5/nzVIEDvqyvfzLMNWmzsYD root@uriel"
];
nix.binaryCaches = [
"scp://nix-ssh@mors"
"scp://nix-ssh@uriel"
];
}
|