mors.nix: activate binary-caches

This commit is contained in:
lassulus 2015-05-07 23:35:08 +02:00 committed by tv
parent 49ddfe1f12
commit bc7843b03d
2 changed files with 14 additions and 0 deletions

View File

@ -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"
];
}

View File

@ -21,6 +21,7 @@
../lass/wine.nix
../lass/texlive.nix
../common/nixpkgs.nix
../lass/binary-caches.nix
];
nixpkgs = {
url = "https://github.com/Lassulus/nixpkgs";