diff options
Diffstat (limited to 'modules/lass')
-rw-r--r-- | modules/lass/binary-caches.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/lass/binary-caches.nix b/modules/lass/binary-caches.nix new file mode 100644 index 000000000..a4ab41588 --- /dev/null +++ b/modules/lass/binary-caches.nix @@ -0,0 +1,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 = [ + "ssh://nix@mors" + "ssh://nix@uriel" + ]; +} |